BrightIdeasSoftware.ObjectListView.GetCheckState C# (CSharp) Метод

GetCheckState() защищенный Метод

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
Результат CheckState?
        protected virtual CheckState? GetCheckState(Object modelObject)
        {
            if (this.CheckStateGetter != null)
                return this.CheckStateGetter(modelObject);
            return this.PersistentCheckBoxes ? this.GetPersistentCheckState(modelObject) : (CheckState?)null;
        }
ObjectListView