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

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

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