LVFOOTERINFO structure (commctrl.h)
Contains information on a footer in a list-view control.
Syntax
typedef struct tagLVFOOTERINFO {
UINT mask;
LPWSTR pszText;
int cchTextMax;
UINT cItems;
} LVFOOTERINFO, *LPLVFOOTERINFO;
Members
mask
Type: UINT
Set of flags that specify which members of this structure contain data to be set or which members are being requested. Currently, this value must be LVFF_ITEMCOUNT, for the cItems member.
pszText
Type: LPWSTR
Not supported. Must be set to zero.
cchTextMax
Type: int
Not supported. Must be set to zero.
cItems
Type: UINT
The number of items in the footer. When this structure is used to get information, this member will be set by the message receiver.
Remarks
This structure is used with the ListView_GetFooterInfo macro and the LVM_GETFOOTERINFO message.
The creation of footers in list-view controls is currently not supported.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2008 [desktop apps only] |
Header | commctrl.h |