次の方法で共有


CListCtrl::GetSelectedCount

リスト ビュー コントロールで選択された項目の数を取得します。

UINT GetSelectedCount( ) const;

戻り値

リスト ビュー コントロールで選択された項目の数。

使用例

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

必要条件

ヘッダー: afxcmn.h

参照

関連項目

CListCtrl クラス

階層図

CListCtrl::SetItemCount

CListCtrl::GetItemCount