|
|
|
|
|
- Using the OrgElement type (2nd syntax)
<Organization Chart>.Modify (Function) In french: <Organigramme>.Modifie Modifies an element in an Organization Chart control. // Syntax 1: Modifying the title only Boss is int Boss = ORG_MyOrganizationChart.Add("Vince Boss", "big boss", "Goldbar.gif") Â ORG_MyOrganizationChart.Modify(1, "Tim C.", "CEO")
// Syntax 2: Modifying the element ElementCEO is OrgElement ElementCEO.Title = "Big Boss" ORG_EXECUTIVE.Add(ElementCEO) Â ElementCEO.Title = "Tim C." ElementCEO..Image = "Goldbar.gif" ORG_EXECUTIVE.Modify(1, ElementCEO)
Syntax
Modifying an element found in an Organization Chart control while specifying its characteristics Hide the details
<Organization Chart control>.Modifies(<Subscript> , <Title> [, <Content> [, <Image>]])
<Organization Chart control>: Control name Name of Organization Chart control where the element will be modified. <Subscript>: Integer Index of the element to be modified. This index was returned by <Organization Chart>.Add. <Title>: Character string New element title. <Content>: Optional character string New element content. If this parameter is not specified, the existing content will not be modified. <Image>: Optional character string New 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. If this parameter is not specified, the existing image will not be modified.
Modifying an element found in an Organization Chart control (by using the OrgElement type) Hide the details
<Organization Chart control>.Modifies(<Subscript> , <Element>)
<Organization Chart control>: Control name Name of Organization Chart control where the element will be modified. <Subscript>: Integer Index of the element to be modified. This index was returned by <Organization Chart>.Add. <Element>: OrgElement variable Name of the OrgElement variable describing the full characteristics of the element to modify. Remarks Using the OrgElement type (2nd syntax) The element at index <Index> is replaced with <Element>. In this case, <Organization Chart>.Modify is equivalent to the following syntax: OrganizationChart_Control[Index] = Element
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|