BrightIdeasSoftware.ObjectListView.IsChecked C# (CSharp) Method

IsChecked() public method

Return true of the given object is checked
If the given object is not in the list, this method returns false.
public IsChecked ( object modelObject ) : bool
modelObject object The model object whose checkedness is returned
return bool
        public virtual bool IsChecked(object modelObject)
        {
            OLVListItem olvi = this.ModelToItem(modelObject);
            return olvi != null && olvi.CheckState == CheckState.Checked;
        }
ObjectListView