다음을 통해 공유


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);
}

요구 사항

헤더: afxwin.h

참고 항목

참조

Clistbox 클래스 클래스

계층 구조 차트

CListBox::GetAnchorIndex