BrightIdeasSoftware.ObjectListView.CheckIndeterminateSubItem C# (CSharp) Method

CheckIndeterminateSubItem() public method

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

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