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

IsChecked() public méthode

Return true of the given object is checked
If the given object is not in the list, this method returns false.
public IsChecked ( object modelObject ) : bool
modelObject object The model object whose checkedness is returned
Résultat bool
        public virtual bool IsChecked(object modelObject)
        {
            OLVListItem olvi = this.ModelToItem(modelObject);
            return olvi != null && olvi.CheckState == CheckState.Checked;
        }
ObjectListView