Jump to content

API Panel.LinkBar.SetVisible: Difference between revisions

From Flowcode Help
No edit summary
No edit summary
Line 33: Line 33:
===Calling in a calculation===
===Calling in a calculation===
* Add to a calculation icon: <pre class="brush:[cpp]">::Panel.LinkBar.SetVisible(linkbar, true)</pre>
* Add to a calculation icon: <pre class="brush:[cpp]">::Panel.LinkBar.SetVisible(linkbar, true)</pre>
''<span style="color:red;">No additional examples</span>''

Revision as of 11:54, 16 January 2023

SetVisible
Sets whether the link is displayed or not 
- HANDLE LinkBar
The handle to the bar to set the state of 
- BOOL Visible
True if the link is to be shown, false if not 
- NONE Return


Detailed description

This sets whether the bar is visible or not. If the bar is invisible, its position can still be retrieved for use in kinematics, etc.


If the bar should only be shown during simulation or design modes, the user may set the visibility during the Simulation.Start and Simulation.Stop events.


Examples

Calling in a calculation

  • Add to a calculation icon:
    ::Panel.LinkBar.SetVisible(linkbar, true)