BrightIdeasSoftware.ObjectListView.PutCheckState C# (CSharp) Method

PutCheckState() protected method

Record the change of checkstate for the given object in the model. This does not update the UI -- only the model
protected PutCheckState ( Object modelObject, CheckState state ) : CheckState
modelObject Object
state CheckState
return CheckState
        protected virtual CheckState PutCheckState(Object modelObject, CheckState state)
        {
            if (this.CheckStatePutter != null)
                return this.CheckStatePutter(modelObject, state);
            return this.PersistentCheckBoxes ? this.SetPersistentCheckState(modelObject, state) : state;
        }
ObjectListView