CListCtrl::GetItemRect
Recupera o retângulo delimitador para todos ou parte de um item no modo de exibição atual.
BOOL GetItemRect(
int nItem,
LPRECT lpRect,
UINT nCode
) const;
Parâmetros
nItem
O índice do item cuja posição deve ser recuperada.lpRect
Endereço de uma estrutura de RECT que recebe o retângulo delimitador.nCode
Parte do item de exibição de lista para que recupere o retângulo delimitador.Pode ser um de esses valores:LVIR_BOUNDS retorna o retângulo delimitador do item inteiro, incluindo o ícone e o rótulo.
LVIR_ICON retorna o retângulo delimitador do ícone ou pequeno de ícone.
LVIR_LABEL retorna o retângulo delimitador do texto do item.
Valor de retorno
Diferente de zero se com êxito; se não zero.
Exemplo
// OnClick is the handler for the NM_CLICK notification
void CListCtrlDlg::OnClick(NMHDR* pNMHDR, LRESULT* pResult)
{
UNREFERENCED_PARAMETER(pResult);
LPNMITEMACTIVATE pia = (LPNMITEMACTIVATE)pNMHDR;
// Get the current mouse location and convert it to client
// coordinates.
CPoint pos( ::GetMessagePos() );
ScreenToClient(&pos);
// Get indexes of the first and last visible items in
// the listview control.
int index = m_myListCtrl.GetTopIndex();
int last_visible_index = index + m_myListCtrl.GetCountPerPage();
if (last_visible_index > m_myListCtrl.GetItemCount())
last_visible_index = m_myListCtrl.GetItemCount();
// Loop until number visible items has been reached.
while (index <= last_visible_index)
{
// Get the bounding rectangle of an item. If the mouse
// location is within the bounding rectangle of the item,
// you know you have found the item that was being clicked.
CRect r;
m_myListCtrl.GetItemRect(index, &r, LVIR_BOUNDS);
if (r.PtInRect(pia->ptAction))
{
UINT flag = LVIS_SELECTED | LVIS_FOCUSED;
m_myListCtrl.SetItemState(index, flag, flag);
break;
}
// Get the next item in listview control.
index++;
}
}
Requisitos
Cabeçalho: afxcmn.h