API Component.GetCompile

From Flowcode Help
Revision as of 15:57, 16 January 2014 by JonnyW (talk | contribs) (XML import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

<sidebar>API Contents</sidebar> Gets whether a component will be compiled or not

Class hierarchy

Component

GetCompile

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

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 = ::Component.GetCompile(target, true)

No additional examples