GroupBoxCollection
AddGroupBox Method
|
Adds a group box to the specified position with the given dimensions.
Namespace:
Spire.Xls.Core.Spreadsheet.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public IGroupBox AddGroupBox(
int row,
int column,
int height,
int width
)
Public Function AddGroupBox (
row As Integer,
column As Integer,
height As Integer,
width As Integer
) As IGroupBox
public:
virtual IGroupBox^ AddGroupBox(
int row,
int column,
int height,
int width
) sealed
abstract AddGroupBox :
row : int *
column : int *
height : int *
width : int -> IGroupBox
override AddGroupBox :
row : int *
column : int *
height : int *
width : int -> IGroupBox
Parameters
-
row
-
Type:
System
Int32
The row index where the group box will be placed.
-
column
-
Type:
System
Int32
The column index where the group box will be placed.
-
height
-
Type:
System
Int32
The height of the group box.
-
width
-
Type:
System
Int32
The width of the group box.
Return Value
Type:
IGroupBox
An IGroupBox object representing the newly added group box.
Implements
IGroupBoxes
AddGroupBox(Int32, Int32, Int32, Int32)
See Also