Difference between revisions of "API Panel.LinkBar.SetEndPos"
From Flowcode Help
Jump to navigationJump to search (XML import of API documentation) |
(XML import) |
||
Line 1: | Line 1: | ||
− | |||
− | |||
<sidebar>API Contents</sidebar> | <sidebar>API Contents</sidebar> | ||
Sets the position for the end point of the bar | Sets the position for the end point of the bar |
Revision as of 15:57, 16 January 2014
<sidebar>API Contents</sidebar> Sets the position for the end point of the bar
Contents
Parameters
HANDLE LinkBar
- The handle to the bar to adjust the position of
HANDLE Pos
- The position to start the bar at
BOOL Track
- Automatically update the bar to match changes in the position
Return value
This call does not return a value
Detailed description
This sets the endposition of the link. A link is a bar that connects the start position to this end point.
If Track is true, the end of the link will always follow the current position. Note, that while the position will update, only visible objects will cause the screen to refresh, so for objects that are not visible (hidden components or position objects) call Update on a position change or intermittently to ensure the bar redraws correctly.
Examples
Calling in a calculation
- Add to a calculation icon:
::Panel.LinkBar.SetEndPos(linkbar, pos, false)
No additional examples