BrightIdeasSoftware.ObjectListView.SetPersistentCheckState C# (CSharp) Method

SetPersistentCheckState() protected method

Remember the check state of the given model object
protected SetPersistentCheckState ( object model, CheckState state ) : CheckState
model object The model to be remembered
state CheckState The model's checkedness
return CheckState
        protected virtual CheckState SetPersistentCheckState(object model, CheckState state)
        {
            if (model == null)
                return CheckState.Unchecked;

            this.CheckStateMap[model] = state;
            return state;
        }
ObjectListView