API Panel.LinkBar.SetVisible
From Flowcode Help
Jump to navigationJump to search![]() |
SetVisible |
Sets whether the link is displayed or not | |
![]() |
LinkBar |
The handle to the bar to set the state of | |
![]() |
Visible |
True if the link is to be shown, false if not | |
![]() |
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)
No additional examples