ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Developing an application or website / Controls, windows and pages / Controls: Available types / TreeView control
  • Collapsing/Expanding a TreeView through programming
  • Example
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
Collapsing/Expanding a TreeView control through programming (prefix syntax)
Collapsing/Expanding a TreeView through programming
Example
The following codes are used to:
  • initialize a TreeView control.
  • expand part of the TreeView control.
  • collapse the TreeView control.
  1. Initialize the TreeView control by programming:
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert", "CAKE-.BMP", "CAKE-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Ice cream")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Ice cream" + ...
    TAB + "Vanilla", "NEXT5-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Ice cream" + ...
    TAB + "Strawberry", "NEXT5-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Ice cream" + ...
    TAB + "Chocolate", "NEXT5-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Cup")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Cup" + ...
    TAB + "Banana Split", "NEXT5-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Cup" + ...
    TAB + "Cherry Garcia", "NEXT5-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Cup" + ...
    TAB + "Colonel", "NEXT5-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Apple pie")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Apple pie" + ...
    TAB + "with whipped cream", "NEXT5-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Apple pie" + ...
    TAB + "with apple brandy", "NEXT5-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Crème brûlée", "NEXT5-.BMP")
    TREE_TVRecipe.Add("Recipe" + TAB + "Dessert" + TAB + "Meringue with cream", "NEXT5-.BMP")
  2. Expand all the elements: The "ExpandAll" procedure is called for each "child" element found. This procedure expands all the collapsed "child" nodes of the "Dessert" node.
    // Lists the "children" of "Desserts" node in "TREE_TVRecipe" treeview
    // The "ExpandAll" procedure is called
    // for each "child" of "Desserts" node found
    Res = TREE_TVRecipe.ListItem("Recipe" + TAB+ "Dessert", "ExpandAll")
    // Local procedure named "ExpandAll"
    // This procedure expands all the collapsed "child" nodes of the "Desserts" node
    PROCÉDURE ExpandAll(TREE_TVRecipe, ChildPath, ChildFound, Level, Pointer)
    // Is the element found a leaf?
    IF TREE_TVRecipe.TypeItem(ChildPath + ChildFound) = tvLeaf THEN
    RETURN  // Back to TreeListItem
    ELSE
    // Is the element found collapsed?
    IF TREE_TVRecipe.Status(ChildPath + ChildFound) = tvCollapse THEN
    TREE_TVRecipe.Expand(ChildPath + ChildFound)
    END
    END
  3. Collapse the "Dessert" node.
    // Collapses the "Desserts" node in the "TREE_TVRecipe" control
    Res = TREE_TVRecipe.Collapse("Recipe" + TAB + "Dessert")
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/15/2023

Send a report | Local help