CTreeCtrl::GetItemState
Retorna o estado do item especificado por hItem.
UINT GetItemState(
HTREEITEM hItem,
UINT nStateMask
) const;
Parâmetros
hItem
Identificador do item cujo estado é a serem recuperados.nStateMask
Máscara que indica quais estados são a serem recuperados.Para obter mais informações sobre valores possíveis nStateMask, consulte a discussão sobre o estado and stateMask o membrosTVITEM estrutura o Windows SDK.
Valor de retorno
A UINT especificando o estado do item.Para obter informações sobre os valores possíveis, consulte CTreeCtrl::GetItem.
Exemplo
// Show all of the visible items in bold.
HTREEITEM hItem = m_TreeCtrl.GetFirstVisibleItem();
while (hItem != NULL)
{
m_TreeCtrl.SetItemState(hItem, TVIS_BOLD, TVIS_BOLD);
ASSERT(TVIS_BOLD & m_TreeCtrl.GetItemState(hItem, TVIS_BOLD));
hItem = m_TreeCtrl.GetNextVisibleItem(hItem);
}
Requisitos
Cabeçalho: afxcmn.h