ICheckBoxes
AddCheckBox Method
|
Adds new item to the collection.
Namespace:
Spire.Xls.Core
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
ICheckBox AddCheckBox(
int row,
int column,
int height,
int width
)
Function AddCheckBox (
row As Integer,
column As Integer,
height As Integer,
width As Integer
) As ICheckBox
ICheckBox^ AddCheckBox(
int row,
int column,
int height,
int width
)
abstract AddCheckBox :
row : int *
column : int *
height : int *
width : int -> ICheckBox
Parameters
-
row
-
Type:
System
Int32
One-based row index of the top-left corner of the new item.
-
column
-
Type:
System
Int32
One-based column index of the top-left corner of the new item.
-
height
-
Type:
System
Int32
Height in pixels of the new item.
-
width
-
Type:
System
Int32
Width in pixels of the new item.
Return Value
Type:
ICheckBox
Newly added item.
See Also