ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Organization Chart functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Adds a child element into an Organization Chart control.
Example
// Add a "Root" element into the Organization Chart control
Boss is int
Boss = OrgAdd(ORG_MyOrganizationChart, "Vince Boss", "big boss", "Goldbar.gif")
// Add a child element
OrgAddChild(ORG_MyOrganizationChart, Boss, "Production")
// Add elements into the Organization Chart control (syntax 2)
// Root element
ElementCEO is OrgElement
ElementCEO.Title = "Big Boss"
OrgAdd(ORG_EXECUTIVE, ElementCEO)
 
// Child elements
Element2 is OrgElement
Element2.Title = "Production"
OrgAddChild(ORG_EXECUTIVE, 1, Element2)
 
Element3 is OrgElement
Element3.Title = "Sales"
OrgAddChild(ORG_EXECUTIVE, 1, Element3)
Syntax

Adding a child elements while specifying its characteristics Hide the details

<Result> = OrgAddChild(<Organization Chart control> , <Parent index> , <Title> [, <Content> [, <Image>]])
<Result>: Integer
  • Index of the added element.
  • -1 if an error occurred. ErrorInfo is used to identify the error.
<Organization Chart control>: Control name
Name of Organization Chart control into which the child element will be added.
<Parent index>: Integer
Index of the parent element of the element to be added.
Remark: To add an element at the root of Organization Chart control, this parameter must be equal to 0.
<Title>: Character string
Title of element.
<Content>: Optional character string
Content of element.
<Image>: Optional character string
Image associated with the element. This image is displayed on the left of element title. This parameter corresponds to the name and to the full (or relative) path of image. A UNC path can be used.

Adding a child element by using the OrgElement type Hide the details

<Result> = OrgAddChild(<Organization Chart control> , <Parent index> , <Element>)
<Result>: Integer
  • Index of the added element.
  • -1 if an error occurred. ErrorInfo is used to identify the error.
<Organization Chart control>: Control name
Name of Organization Chart control into which the child element will be added.
<Parent index>: Integer
Index of the parent element of the element to be added.
Remark: To add an element at the root of Organization Chart control, this parameter must be equal to 0.
<Element>: OrgElement variable
Name of the OrgElement variable that describes the characteristics of the child element to be added.
Component: wd290obj.dll
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/07/2022

Send a report | Local help