Jump to content

API System.DeleteHandle: Difference between revisions

From Flowcode Help
Admin (talk | contribs)
XML import of API auto-gen
Admin (talk | contribs)
XML import
Line 2: Line 2:
Deletes any handle created by the component
Deletes any handle created by the component


<div style="width:25%; float:right" class="toc">
===Class hierarchy===
:System
::DeleteHandle
</div>
__TOC__


===Parameters===
==Parameters==
''[[Variable types|HANDLE]] Handle''
''[[Variable types|HANDLE]] Handle''
:The handle of some component-created object
:The handle of some component-created object


===Return value===
==Return value==
[[Variable types|BOOL]]
[[Variable types|BOOL]]


No additional information
No additional information


===Detailed description===
==Detailed description==
''No additional information''
''No additional information''


===Examples===
==Examples==
====Calling in a calculation====
===Calling in a calculation===
* Declare a variable 'result' of type BOOL
* Declare a variable 'result' of type BOOL
* Add to a calculation icon: <pre class="brush:[C]">result = ::System.DeleteHandle(handle)</pre>
* Add to a calculation icon: <pre class="brush:[cpp]">result = ::System.DeleteHandle(handle)</pre>

Revision as of 21:14, 11 May 2013

<sidebar>API contents</sidebar> Deletes any handle created by the component

Class hierarchy

System
DeleteHandle

Parameters

HANDLE Handle

The handle of some component-created object

Return value

BOOL

No additional information

Detailed description

No additional information

Examples

Calling in a calculation

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