CListCtrl::GetSelectionMark

int GetSelectionMark( );

Return Value

The zero-based selection mark, or -1 if there is no selection mark.

Remarks

This member function implements the behavior of the Win32 macro, ListView_GetSelectionMark, as described in the Platform SDK.

Example

// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;

// Set the selection mark to the first item only if no other item is 
// selected.
if (pmyListCtrl->GetSelectionMark() == -1)
      pmyListCtrl->SetSelectionMark(0);

CListCtrl OverviewClass MembersHierarchy Chart

See Also   CListCtrl::SetSelectionMark