共用方式為


CListBox::SetAnchorIndex

設定多重選取清單方塊中的錨定開始擴充選取範圍。

void SetAnchorIndex(
   int nIndex 
);

參數

  • nIndex
    指定要做為錨點清單方塊項目之以零起始的索引。

備註

在多重選取的清單方塊,錨定項目是在連續選取項目區塊的第一個或最後一個項目。

範例

void CMyODListBox::OnLButtonDown(UINT nFlags, CPoint point)
{
   BOOL bOutside = TRUE;
   UINT uItem = ItemFromPoint(point, bOutside);

   if (!bOutside)
   {
      // Set the anchor to be the middle item.
      SetAnchorIndex(uItem);
      ASSERT((UINT)GetAnchorIndex() == uItem);
   }

   CListBox::OnLButtonDown(nFlags, point);
}

需求

Header: afxwin.h

請參閱

參考

CListBox 類別

階層架構圖

CListBox::GetAnchorIndex