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

Namespace: Spire.Spreadsheet.Forms.Collections
Assembly: Spire.Spreadsheet (in Spire.Spreadsheet.dll) Version: 3.7.1.8020

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public ICheckBoxControl AddCheckBoxControl(
	int row,
	int col,
	bool isChecked
)
Public Function AddCheckBoxControl ( 
	row As Integer,
	col As Integer,
	isChecked As Boolean
) As ICheckBoxControl
public:
ICheckBoxControl^ AddCheckBoxControl(
	int row, 
	int col, 
	bool isChecked
)
member AddCheckBoxControl : 
        row : int * 
        col : int * 
        isChecked : bool -> ICheckBoxControl 

Parameters

row
Int32
Row index of cell.
col
Int32
Column index of cell.
isChecked
Boolean
Checkbox checked property state.

Return Value

ICheckBoxControl
The added checkbox.

See Also