AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones TreeView
  • Node to expand
  • Selection bar
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
Expands a node in a TreeView control. The "child" elements (nodes or leaves) of this node become visible.
Example of TreeView control:
Vocabulary linked to a TreeView control
Reminder: At runtime, a node is expanded when the node name is preceded by "-".
Example
// Expand the "Desserts" node in the "TREE_TVRecipe" TreeView control
Res = TreeExpand(TREE_TVRecipe, "Recipes" + TAB + "Desserts")
Syntax
<Result> = TreeExpand(<TreeView control> , <Node to expand>)
<Result>: Boolean
  • True if the node was expanded,
  • False otherwise.
<TreeView control>: Control name
Name of the TreeView control to be used.
<Node to expand>: Character string
Path of node to expand. This parameter has the following format:
"<Root name>" + TAB + ["<Name of 1st node>" + TAB + ...
["<Name of 2nd node>" + TAB + [...]]]"<Leaf name>"
If there are two elements with the same name in the path, you can add the IDs of the elements (after their names using TreeID).
Remarks

Node to expand

If the node to expand:
  • is not found, TreeExpand returns False.
  • is a leaf, TreeExpand returns True.
  • is already expanded, TreeExpand returns True.
  • is not visible, TreeExpand makes this node visible. Its "parent" and "sibling" elements are also displayed. The "parent" elements are expanded.
When TreeExpand is called, if the specified branch has a procedure associated via the AddChildDelayed property, this procedure will be executed.

Selection bar

TreeExpand does not change the position of the selection bar.
Component: wd290obj.dll
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local