Difference between revisions of "API System.ShowHandle"

From Flowcode Help
Jump to navigationJump to search
(XML import of updated API docs)
(No difference)

Revision as of 09:58, 17 June 2013


<sidebar>API contents</sidebar> Given a handle to an object with viewable presence, shows that object on screen

Class hierarchy

System

ShowHandle

Parameters

HANDLE Handle

The object to display on screen


Return value

BOOL

Returns true if the operation is a success, else false


Detailed description

No additional information


Examples

Calling in a calculation

  • Declare a variable 'result' of type BOOL
  • Add to a calculation icon:
    result = ::System.ShowHandle(handle)

No additional examples