本文介绍了LVITEM iSubItem的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
typedef struct _LVITEM {
UINT mask;
int iItem;
int iSubItem; -------???
UINT state;
UINT stateMask;
LPTSTR pszText;
int cchTextMax;
int iImage;
LPARAM lParam;
#if (_WIN32_IE >= 0x0300)
int iIndent;
#endif
#if (_WIN32_IE >= 0x560)
int iGroupId;
UINT cColumns; // tile view columns
PUINT puColumns;
#endif
} LVITEM, *LPLVITEM;
iSubItem
的用途是什么?
What''s the iSubItem
used for?
推荐答案
这篇关于LVITEM iSubItem的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!