BrightIdeasSoftware.ObjectListView.GetPersistentCheckState C# (CSharp) Method

GetPersistentCheckState() protected method

Gets the checkedness of the given model.
protected GetPersistentCheckState ( object model ) : CheckState
model object The model
return CheckState
        protected virtual CheckState GetPersistentCheckState(object model)
        {
            CheckState state = CheckState.Unchecked;
            if (model != null)
                this.CheckStateMap.TryGetValue(model, out state);
            return state;
        }
ObjectListView