Difference between revisions of "API Component.GetCompile"
From Flowcode Help
Jump to navigationJump to search (XML import for latest API) |
(XML import) |
||
Line 1: | Line 1: | ||
− | |||
− | |||
<sidebar>API Contents</sidebar> | <sidebar>API Contents</sidebar> | ||
Gets whether a component will be compiled or not | Gets whether a component will be compiled or not |
Revision as of 15:57, 16 January 2014
<sidebar>API Contents</sidebar> Gets whether a component will be compiled or not
Contents
Parameters
HANDLE Target
- The component to read the state from
- The default value for this parameter is: this
BOOL IncludeParents
- True to include all the parents of the component, false to read its raw flag
Return value
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 = ::Component.GetCompile(target, true)
No additional examples