BrightIdeasSoftware.ObjectListView.IsSubItemChecked C# (CSharp) Method

IsSubItemChecked() public method

Is there a check at the check box at the given cell
public IsSubItemChecked ( object rowObject, OLVColumn column ) : bool
rowObject object
column OLVColumn
return bool
        public virtual bool IsSubItemChecked(object rowObject, OLVColumn column)
        {
            if (column == null || rowObject == null || !column.CheckBoxes)
                return false;
            return (column.GetCheckState(rowObject) == CheckState.Checked);
        }
ObjectListView