BrightIdeasSoftware.ObjectListView.UncheckSubItem C# (CSharp) Method

UncheckSubItem() public method

Uncheck the check at the given cell
public UncheckSubItem ( object rowObject, OLVColumn column ) : void
rowObject object
column OLVColumn
return void
        public virtual void UncheckSubItem(object rowObject, OLVColumn column)
        {
            if (column == null || rowObject == null || !column.CheckBoxes)
                return;

            column.PutCheckState(rowObject, CheckState.Unchecked);
            this.RefreshObject(rowObject);
        }
ObjectListView