287. ValueBrowser

Useful tool for viewing any variable contents.

287.1. Summary of Module Globals

List of Global Functions

  • BrowseTree - Shows tree with contents of variable.

  • BrowseTreeHelper - Creates tree with contents of variable. This function creates the tree items and returns them as term. This offers using the generated output in your behavior, such as data-structure browser with editor. Heavy recursion...

  • DebugBrowse - Write contents of variable to log file.

  • DebugBrowseHelper - Write contents of variable to log file. This function does the job. Heavy recursion...

List of Global Variables

    287.2. Global Functions

    287.2.1. BrowseTree

    Shows tree with contents of variable.

    Function parameters

    • any variable

    Return value

    • void

    Example 138. 

      map a = $[
         "first" : 35,
         "second" : [ 1, 2, 3, 4, 5],
         "third" : $[ "a" : 15, `b: `VBox () ]
        ];
      ValueBrowser::BrowseTree (a);
    


    287.2.2. BrowseTreeHelper

    Creates tree with contents of variable. This function creates the tree items and returns them as term. This offers using the generated output in your behavior, such as data-structure browser with editor. Heavy recursion...

    Function parameters

    • any variable

    • string indent

    Return value

    • term

    287.2.3. DebugBrowse

    Write contents of variable to log file.

    Function parameters

    • any variable

    Return value

    • void

    287.2.4. DebugBrowseHelper

    Write contents of variable to log file. This function does the job. Heavy recursion...

    Function parameters

    • any variable

    • string indent

    Return value

    • void

    287.3. Global Variables

    287.4. Module Requirements

    287.4.1. Module Imports

    • Label

    287.4.2. Module Includes