Skip to content

Latest commit

 

History

History
160 lines (128 loc) · 4.39 KB

ns-commctrl-lvfooteritem.md

File metadata and controls

160 lines (128 loc) · 4.39 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NS:commctrl.tagLVFOOTERITEM
LVFOOTERITEM (commctrl.h)
Contains information on a footer item.
*LPLVFOOTERITEM
LPLVFOOTERITEM
LPLVFOOTERITEM structure pointer [Windows Controls]
LVFIF_STATE
LVFIF_TEXT
LVFIS_FOCUSED
LVFOOTERITEM
LVFOOTERITEM structure [Windows Controls]
_shell_LVFOOTERITEM
_shell_LVFOOTERITEM_cpp
commctrl/LPLVFOOTERITEM
commctrl/LVFOOTERITEM
controls.LVFOOTERITEM
controls._shell_LVFOOTERITEM
controls\LVFOOTERITEM.htm
Controls
VS|Controls|~\controls\listview\structures\lvfooteritem.htm
12/05/2018
*LPLVFOOTERITEM, LPLVFOOTERITEM, LPLVFOOTERITEM structure pointer [Windows Controls], LVFIF_STATE, LVFIF_TEXT, LVFIS_FOCUSED, LVFOOTERITEM, LVFOOTERITEM structure [Windows Controls], _shell_LVFOOTERITEM, _shell_LVFOOTERITEM_cpp, commctrl/LPLVFOOTERITEM, commctrl/LVFOOTERITEM, controls.LVFOOTERITEM, controls._shell_LVFOOTERITEM
commctrl.h
Windows
Windows Vista [desktop apps only]
Windows Server 2008 [desktop apps only]
Windows
LVFOOTERITEM, *LPLVFOOTERITEM
19H1
tagLVFOOTERITEM
commctrl/tagLVFOOTERITEM
LPLVFOOTERITEM
commctrl/LPLVFOOTERITEM
LVFOOTERITEM
commctrl/LVFOOTERITEM
c++
APIRef
kbSyntax
HeaderDef
Commctrl.h
LVFOOTERITEM

LVFOOTERITEM structure

-description

Contains information on a footer item.

-struct-fields

-field mask

Type: UINT

Set of flags that specify which members of this structure contain data to be set or which members are being requested. This parameter must be one of the following values:

Value Meaning
LVFIF_TEXT
The pszText member is valid input from the caller or is requested and thus should be set by the receiver.
LVFIF_STATE
The state member is valid input from the caller or is requested and thus should be set by the receiver.

-field iItem

Type: int

The index of the item.

-field pszText

Type: LPWSTR

A pointer to a null-terminated, Unicode buffer. The calling process is responsible for allocating the buffer.

-field cchTextMax

Type: int

The number of WCHARs in the buffer pointed to by pszText, including the terminating NULL.

-field state

Type: UINT

Indicates the item's state. The stateMask member indicates the valid bits of this member. Currently, state must be set to the following:

Value Meaning
LVFIS_FOCUSED
Bit indicating focus state. Set if the item is in focus, otherwise cleared.

-field stateMask

Type: UINT

Value specifying which bits of the state member will be retrieved or modified. Currently, this value must be the following:

Value Meaning
LVFIS_FOCUSED
The LVFIS_FOCUSED bit of member state is valid. For example, setting this member to LVFIS_FOCUSED will cause the focus state to be retrieved to member state.

-remarks

This structure is used with the ListView_GetFooterItem macro and the LVM_GETFOOTERITEM message.