Udostępnij za pośrednictwem


CListCtrl::GetSelectedCount

Kopiuje zaznaczone elementy w formantu widoku listy.

UINT GetSelectedCount( ) const;

Wartość zwracana

Liczba zaznaczonych elementów na liście wyświetlania formantu.

Przykład

        UINT i, uSelectedCount = m_myListCtrl.GetSelectedCount();
        int  nItem = -1;

        // Update all of the selected items.
        if (uSelectedCount > 0)
        {
            for (i=0; i < uSelectedCount; i++)
            {
                nItem = m_myListCtrl.GetNextItem(nItem, LVNI_SELECTED);
                ASSERT(nItem != -1);
                m_myListCtrl.Update(nItem); 
            }
        }

Wymagania

Nagłówek: afxcmn.h

Zobacz też

Informacje

Klasa CListCtrl

Wykres hierarchii

CListCtrl::SetItemCount

CListCtrl::GetItemCount