Property RowDefs
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
RowDefs
Gets or sets the height (in pixels) of all rows of the dialog box grid, separated by semicolons.
public string RowDefs { get; set; }
Property Value
- string
The height (in pixels) of all rows of the dialog box grid, separated by semicolons.
Examples
UIBuilder uibDialogBox1 = new UIBuilder();
uibDialogBox1.ColumnDefs = "100;100;100";
uibDialogBox1.RowDefs = "100;100;100";
uibDialogBox1.Height = 300;
uibDialogBox1.Width = 300;
// uibDialogBox1.MinHeight = 100;
// uibDialogBox1.MinWidth = 100;
// uibDialogBox1.MaxHeight = 500;
// uibDialogBox1.MaxWidth = 500;
uibDialogBox1.RequireResponse = true;
Remarks
Instead of a pixel value, you can also specify the following values:
- auto: The height of the row will be automatically adapted to the highest dialog box item in that row.
- *: The row will have the largest possible height, depending on the height of the other rows.