Difference between revisions of "API Panel.LinkBar.EnableAuto"

From Flowcode Help
Jump to navigationJump to search
(XML import of LinkBar API)
 
(XML import)
Line 2: Line 2:
  
 
<sidebar>API contents</sidebar>
 
<sidebar>API contents</sidebar>
Creates a new bar linking a pair of position handles
+
Sets whether Flowcode should automatically draw links for component object property types
  
 
<div style="width:25%; float:right" class="toc">
 
<div style="width:25%; float:right" class="toc">
Line 14: Line 14:
 
==Parameters==
 
==Parameters==
 
[[Variable Types|HANDLE]] ''Component''
 
[[Variable Types|HANDLE]] ''Component''
:The component to enable/disable links for
+
:The component to enable or disable links for
 
:''The default value for this parameter is: '''''this'''
 
:''The default value for this parameter is: '''''this'''
  

Revision as of 13:35, 1 July 2013


<sidebar>API contents</sidebar> Sets whether Flowcode should automatically draw links for component object property types

Class hierarchy

Panel

LinkBar
EnableAuto

Parameters

HANDLE Component

The component to enable or disable links for
The default value for this parameter is: this

BOOL Enable

True to draw default links from this component, else false


Return value

This call does not return a value


Detailed description

No additional information


Examples

Calling in a calculation

  • Add to a calculation icon:
    ::Panel.LinkBar.EnableAuto(component, true)

No additional examples