Difference between revisions of "API System.DeleteHandle"
From Flowcode Help
Jump to navigationJump to search|  (XML import of API auto-gen) |  (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== | |
| ''[[Variable types|HANDLE]] Handle'' | ''[[Variable types|HANDLE]] Handle'' | ||
| :The handle of some component-created object | :The handle of some component-created object | ||
| − | + | ==Return value== | |
| [[Variable types|BOOL]] | [[Variable types|BOOL]] | ||
| No additional information | No additional information | ||
| − | + | ==Detailed description== | |
| ''No additional information'' | ''No additional information'' | ||
| − | + | ==Examples== | |
| − | + | ===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:[ | + | * 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
 
Contents
Parameters
HANDLE Handle
- The handle of some component-created object
Return value
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) 
