BrightIdeasSoftware.ObjectListView.CheckSubItem C# (CSharp) Method

CheckSubItem() public method

Put a check into the check box at the given cell
public CheckSubItem ( object rowObject, OLVColumn column ) : void
rowObject object
column OLVColumn
return void
        public virtual void CheckSubItem(object rowObject, OLVColumn column)
        {
            if (column == null || rowObject == null || !column.CheckBoxes)
                return;

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