MFC是否提供了用于获取类CListCtrl
实例列的最大可能宽度的接口?
如果是这样的话是什么?
感谢。
更新:这是一个小代码段,展示了我将如何使用该值:
LV_ITEM item;
item.mask = LVIF_TEXT; // state what type of info we want to get
item.iItem = pos;
item.iSubItem = col;
item.pszText = ItemText; // as we request text for the particular item the result will be in .pszText variable
item.cchTextMax = /*here goes maxColumnWidthInSymbols*///ArrayLen ( ItemText );
// 2. Execute request
GetItem ( & item );