BrightIdeasSoftware.ObjectListView.IsCheckedIndeterminate C# (CSharp) Method

IsCheckedIndeterminate() public method

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