Type: IDebugService

Summary:

Debug service

Remarks:

Methods:

ShowToolbar

Summary:

Shows the debug toolbar

Example:

This example shows you how to use this method:

            Client.Debug.ShowToolbar();
            

HideToolbar

Summary:

Hides the debug toolbar

Example:

This example shows you how to use this method:

            Client.Debug.HideToolbar();
            

ShowOutput

Summary:

Opens the output window

Example:

This example shows you how to use this method:

            Client.Debug.ShowOutput();
            

ShowScriptEditor

Summary:

Opens script editor tool

Example:

This example shows you how to use this method:

            Client.Debug.ShowScriptEditor();
            

ShowMemoryProfiling

Summary:

Opens memory profiling tool

Example:

This example shows you how to use this method:

            Client.Debug.ShowMemoryProfiling();
            

ShowMonitorAnalyser

Summary:

Opens the monitor analyser tool

Example:

This example shows you how to use this method:

            Client.Debug.ShowMonitorAnalyser();
            

ShowControlWatcher

Summary:

Opens the control watcher tool

Example:

This example shows you how to use this method:

            Client.Debug.ShowControlWatcher();
            

ShowVisualTree

Summary:

Opens the Visual tree tool

Example:

This example shows you how to use this method:

            Client.Debug.ShowVisualTree();
            

ShowLiveValues

Summary:

Opens the Live Values tool

Example:

This example shows you how to use this method:

            Client.Debug.ShowLiveValues();
            

OpenLogFile

Summary:

Opens the log file

Example:

This example shows you how to use this method:

            Client.Debug.OpenLogFile();
            

GarbageCollect

Summary:

Force Garbage collection

Example:

This example shows you how to use this method:

            Client.Debug.GarbageCollect();
            

ExitApplication

Summary:

Exits application

Example:

This example shows you how to use this method:

            Client.Debug.ExitApplication();
            

Trace(System.String)

Summary:

Prints a message in the debug output window

Parameters:

  1. text: string to write in the debug output window

Example:

This example shows you how to use this method:

            Client.Debug.Trace("this is a test");