Adds a checkbox to a specified cell by cell name.

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 AddCheckBox(
	string cellName,
	bool IsChecked
)
Public Function AddCheckBox ( 
	cellName As String,
	IsChecked As Boolean
) As ICheckBoxControl
public:
ICheckBoxControl^ AddCheckBox(
	String^ cellName, 
	bool IsChecked
)
member AddCheckBox : 
        cellName : string * 
        IsChecked : bool -> ICheckBoxControl 

Parameters

cellName
String
Name of grid cell.
IsChecked
Boolean
check state.

Return Value

ICheckBoxControl

See Also