|
|
|
|
ElementOrientation (Property) In french: OrientationElément
The ElementOrientation property is used to get and change the orientation of an Organization Chart control.
IF CBOX_VERTICAL = True THEN ORG_MyOrganizationChart.ElementOrientation = LeftToRight ELSE ORG_MyOrganizationChart.ElementOrientation = TopToBottom END
Syntax
Finding out the orientation of an Organization Chart control Hide the details
<Result> = <Organization Chart control>.ElementOrientation
<Result>: Integer constant Current orientation of the control: | | BottomToTop | The root element of the organization chart is at the bottom of the control, and its children are at the top. | LeftToRight | The root element of the organization chart is to the left of the control, and its children are to the right. | RightToLeft | The root element of the organization chart is to the right of the control, and its children are to the left. | TopToBottom | The root element of the organization chart is located at the top of control, and its children are at the bottom. |
<Organization Chart control>: Control name Name of Organization Chart control to use.
Modifying the orientation of an Organization Chart control Hide the details
<Organization Chart control>.ElementOrientation = <Orientation>
<Organization Chart control>: Control name Name of Organization Chart control to use. <Orientation>: Integer constant New orientation of the control: | | BottomToTop | The root element of the organization chart is at the bottom of the control, and its children are at the top. | LeftToRight | The root element of the organization chart is to the left of the control, and its children are to the right. | RightToLeft | The root element of the organization chart is to the right of the control, and its children are to the left. | TopToBottom | The root element of the organization chart is located at the top of control, and its children are at the bottom. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|