Contains and receives list-view item information needed to display a ToolTip for an item
Global Const $tagNMLVGETINFOTIP = $tagNMHDR & ";int Flags;ptr Text;int TextMax;int Item;int SubItem;int lParam"
$tagNMHDR | Contains information about a notification message |
Flags | Either zero or $LVGIT_UNFOLDED |
Text | Address of a string buffer that receives any additional text information. If Flags is zero, this member will contain the existing item text. In this case, you should append any additional text onto the end of this string. |
TextMax | Size, in characters, of the buffer pointed to by Text. Although you should never assume that this buffer will be of any particular size, the $INFOTIPSIZE value can be used for design purposes |
Item | 0-based index of the item to which this structure refers. |
SubItem | 1-based index of the subitem to which this structure refers. If this member is zero, the structure is referring to the item and not a subitem. This member is not currently used and will always be zero. |
lParam | Application-defined value associated with the item This member is not currently used and will always be zero. |