BrightIdeasSoftware.ObjectListView.PutCheckState C# (CSharp) Méthode

PutCheckState() protected méthode

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
Résultat 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