|
|
|
|
|
ElementWidth (Property) In french: LargeurElément
The ElementWidth property is used to: - Find out or modify the width of the elements in an Organization Chart control.
- Find out or modify the width of the cells in a Dashboard control.
Remarks: - The minimum width of the elements found in an Organization Chart control is defined in the "General" tab of the description window of the Organization Chart control.
- The width of a cell found in a Dashboard control is defined in the "Details" tab of the description of a Dashboard control.
- This property is available for Dashboard controls only.
ORG_Main.ElementWidth = 200 ORG_Main.ElementHeight = 100 Â IF CBOX_Zoom = True THEN ORG_Main.ElementWidth = 400 ORG_Main.ElementHeight = 200 END
// Reduce the height of all cells in the Dashboard control IF DASH_Dashboard.ElementHeight > 50 THEN DASH_Dashboard.ElementHeight = 50 END
Syntax
Finding out the width of elements or cells Hide the details
<Result> = <Control used>.ElementWidth
<Result>: Integer - Width (in pixels) of the elements found in the specified Organization Chart control.
- Width (in pixels) of the cells found in the specified Dashboard control.
<Control used>: Control name - Name of Organization Chart control to use.
- Name of the Dashboard control to be used.
Modifying the width of the elements or cells Hide the details
<Control used>.ElementWidth = <New width>
<Control used>: Control name - Name of Organization Chart control to use.
- Name of the Dashboard control to be used.
<New width>: Real - New width (in pixels) of the elements found in the specified Organization Chart control.
- New width (in pixels) of cells found in the specified Dashboard control.
Remarks The margin between the elements is added to the width of the elements.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|