CTreeCtrl::EnsureVisible
Chame essa função para garantir que um item de modo de exibição de árvore está visível.
BOOL EnsureVisible(
HTREEITEM hItem
);
Parâmetros
- hItem
Identificador do item de árvore sendo feito visível.
Valor de retorno
RetornaTRUE se o sistema percorreu os itens em controle de exibição em árvore para garantir que o item especificado está visível.Caso contrário, o valor retornado é FALSE.
Comentários
Se necessário, a função expande o item pai ou rola o controle de modo de exibição de árvore para que o item está visível.
Exemplo
HTREEITEM hItem = m_TreeCtrl.GetSelectedItem();
// hmyItem is the item that I want to ensure is visible.
HTREEITEM hmyItem = m_TreeCtrl.GetChildItem(hItem);
// Expand the parent, if possible.
HTREEITEM hParent = m_TreeCtrl.GetParentItem(hmyItem);
if (hParent != NULL)
m_TreeCtrl.Expand(hParent, TVE_EXPAND);
// Ensure the item is visible.
m_TreeCtrl.EnsureVisible(hmyItem);
Requisitos
Cabeçalho: afxcmn.h
Consulte também
Referência
CTreeCtrl::GetFirstVisibleItem