241. ValueBrowser

Useful tool for viewing any variable contents.

241.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

    241.2. Global Functions

    241.2.1. BrowseTree

    Shows tree with contents of variable.

    Function parameters

    • any variable

    Return value

    • void

    Example 60. 

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

    241.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

    241.2.3. DebugBrowse

    Write contents of variable to log file.

    Function parameters

    • any variable

    Return value

    • void

    241.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

    241.3. Global Variables

    241.4. Module Requirements

    none