|
|
|
|
|
MarginHeight (Property) In french: MargeHauteur
The MarginHeight property is used to: - Find out the vertical margin between the widgets found in a Dashboard control.
- Modify the vertical margin between the Widgets found in a Dashboard control.
Remark: The vertical margin between the widgets of a Dashboard control is defined in the "Details" tab of the description window of the Dashboard control. // Modify CBOX_WidgetSpacing IF CBOX_WidgetSpacing THEN DASH_Main.MarginWidth = 20 DASH_Main.MarginHeight = 20 ELSE DASH_Main.MarginWidth = 0 DASH_Main.MarginHeight = 0 END
Syntax
Finding out the vertical margin between the widgets Hide the details
<Result> = <Dashboard control>.MarginHeight
<Result>: Integer Vertical margin (in pixels) between the widgets found in the specified Dashboard control. <Dashboard control>: Control name Name of the Dashboard control to be used.
Modifying the vertical margin between the widgets Hide the details
<Dashboard control>.MarginHeight = <New margin>
<Dashboard control>: Control name Name of the Dashboard control to be used. <New margin>: Integer New vertical margin (in pixels) between the widgets found in the specified Dashboard control. This value must be positive or null. Remarks - This margin does not take into account the border defined in the style.
- To change the horizontal margin, use the MarginWidth property.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|