AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones TreeView
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
Returns the "children" of an element found in a TreeView control.
Example of TreeView control:
Vocabulary linked to a TreeView control
Example
// First "child" of "Desserts" node in the "TREE_TVRecipe" TreeView
Res = TreeGiveChild(TREE_TVRecipe, "Recipes" + TAB + "Desserts", tvFirst)
// Res is equal to: "Warm Desserts"
Syntax
<Result> = TreeGiveChild(<TreeView control> , <Node path> , <Child to get>)
<Result>: Character string
  • Name of "child" element found,
  • Empty string ("") if no "child" element is found.
<TreeView control>: Control name
Name of the TreeView control to be used.
<Node path>: Character string
Full path to the node whose "child" elements are requested. This parameter:
  • has the following format:
    "<Root name>" + TAB + ["<Name of 1st node>" + TAB + ...
    ["<Name of 2nd node>" + TAB + [...]]]"<Leaf name>"
  • corresponds to the NULL constant if the "children" of the root of the TreeView control must be returned.
<Child to get>: Integer constant
Indicates the requested "child":
tvFirstFirst child element.
tvNextChild following the last child that was retrieved.
Component: wd290obj.dll
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2024

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