BrightIdeasSoftware.ObjectListView.IsSelected C# (CSharp) Method

IsSelected() public method

Return true if the row representing the given model is selected
public IsSelected ( object model ) : bool
model object The model object to look for
return bool
        public bool IsSelected(object model)
        {
            OLVListItem item = this.ModelToItem(model);
            return item != null && item.Selected;
        }
ObjectListView