CListCtrl::GetItemRect
Načte ohraničovací obdélník pro všechny nebo část položky v aktuálním zobrazení.
BOOL GetItemRect(
int nItem,
LPRECT lpRect,
UINT nCode
) const;
Parametry
nItem
Index položky, jejichž poloha je načíst.lpRect
Adresa RECT struktury, která přijímá ohraničovacího rámečku.nCode
Část položka zobrazení seznamu, pro který chcete načíst ohraničovacího rámečku.Může být jedna z těchto hodnot:LVIR_BOUNDSVrátí ohraničovacího rámečku celé položky včetně ikona a popisek.
LVIR_ICONVrátí ohraničovací obdélník ikonu nebo malé ikony.
LVIR_LABELVrátí ohraničovacího rámečku textu položky.
Vrácená hodnota
Nenulová hodnota, pokud je úspěšná. jinak nula.
Příklad
// 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++;
}
}
Požadavky
Záhlaví: afxcmn.h