CellControlCollection.AddCheckBox

AddCheckBox(int, int, bool)

Adds a checkbox to a specified cell at row column index.

public CheckBox AddCheckBox(int row, int col, bool check)
ParameterTypeDescription
rowInt32Row index of cell.
colInt32Column index of cell.
checkBooleanCheckbox checked property state.

Return Value

The added checkbox.

See Also


AddCheckBox(string, bool)

Adds a checkbox to a specified cell by cell name.

public CheckBox AddCheckBox(string cellName, bool check)
ParameterTypeDescription
cellNameStringName of grid cell.
checkBooleanCheckbox checked property state.

Return Value

The added checkbox.

See Also