CheckBoxInHeader_csharp.CustomCheckBoxColumn.GetCellType C# (CSharp) Method

GetCellType() public method

public GetCellType ( GridViewRowInfo row ) : Type
row GridViewRowInfo
return Type
        public override Type GetCellType(GridViewRowInfo row)
        {
            if (row is GridViewTableHeaderRowInfo)
                return typeof(CheckBoxHeaderCell);
            return base.GetCellType(row);
        }
    }
CustomCheckBoxColumn