BrightIdeasSoftware.ObjectListView.GetCheckState C# (CSharp) Method

GetCheckState() protected method

Get the checkedness of an object from the model. Returning null means the model does not know and the value from the control will be used.
protected GetCheckState ( Object modelObject ) : CheckState?
modelObject Object
return CheckState?
        protected virtual CheckState? GetCheckState(Object modelObject)
        {
            if (this.CheckStateGetter != null)
                return this.CheckStateGetter(modelObject);
            return this.PersistentCheckBoxes ? this.GetPersistentCheckState(modelObject) : (CheckState?)null;
        }
ObjectListView