FormControlCollection.AddGroupBox(Single, Single, Single, Single) Method
In This Article
Creates a group box form control in the specified worksheet area.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
#Declaration
GroupBoxFormControl AddGroupBox(
float x,
float y,
float width,
float height
)
#Parameters
Name | Type | Description |
---|---|---|
x | Single | The distance from the left of the worksheet. The ISpreadsheet |
y | Single | The distance from the top of the worksheet. The ISpreadsheet |
width | Single | The form control width. |
height | Single | The form control height. |
#Returns
Type | Description |
---|---|
Group |
The group box form control. |
#Remarks
#Example
The code sample below creates a group box control:
using DevExpress.Spreadsheet;
Workbook workbook = new Workbook();
workbook.LoadDocument("Document.xlsx");
var groupBox = formControls.AddGroupBox(20, 20, 600, 400);
groupBox.PlainText = "Group Box";
Note
The Form
method call adds a new item to both Form
See Also