Difference between revisions of "API System.GetSender"

From Flowcode Help
Jump to navigationJump to search
(XML import of API auto-gen)
 
(XML import)
 
(14 intermediate revisions by 2 users not shown)
Line 1: Line 1:
wiki page name
+
<sidebar>API Contents</sidebar>
==SystemGetSender==
+
Gets the handle of the component that posted this event - 0 for system
  
Gets the handle of the component that posted this event - 0 for system
+
<div style="width:25%; float:right" class="toc">
----
+
====Class hierarchy====
 +
[[API System|System]]
 +
:[[API System|GetSender]]
 +
</div>
 +
__TOC__
  
===Parameters===
+
==Parameters==
 
''This function has no parameters''
 
''This function has no parameters''
  
===Return value===
+
 
[[Variable types|HANDLE]]
+
==Return value==
 +
[[Variable Types|HANDLE]]
  
 
Returns the handle of the component that posted this event - 0 for system
 
Returns the handle of the component that posted this event - 0 for system
  
===Detailed description===
 
''No additional information''
 
  
===Examples===
+
==Detailed description==
====Calling in a calculation:====
+
''<span style="color:red;">No additional information</span>''
 +
 
 +
 
 +
==Examples==
 +
===Calling in a calculation===
 
* Declare a variable 'result' of type HANDLE
 
* Declare a variable 'result' of type HANDLE
* Add to a calculation icon: result = ::System.GetSender()
+
* Add to a calculation icon: <pre class="brush:[cpp]">result = ::System.GetSender()</pre>
 +
 
 +
''<span style="color:red;">No additional examples</span>''

Latest revision as of 15:58, 16 January 2014

<sidebar>API Contents</sidebar> Gets the handle of the component that posted this event - 0 for system

Class hierarchy

System

GetSender

Parameters

This function has no parameters


Return value

HANDLE

Returns the handle of the component that posted this event - 0 for system


Detailed description

No additional information


Examples

Calling in a calculation

  • Declare a variable 'result' of type HANDLE
  • Add to a calculation icon:
    result = ::System.GetSender()

No additional examples