API Panel.LinkBar.SetStartAdjustment

From Flowcode Help
Revision as of 10:46, 1 July 2013 by JonnyW (talk | contribs) (XML import of LinkBar API)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search


<sidebar>API contents</sidebar> Sets the clipping adjustments for the beginning of the link

Class hierarchy

Panel

LinkBar
SetStartAdjustment

Parameters

HANDLE LinkBar

The handle to the bar to adjust the position of

ULONG Adjustment

The automatic adjustment mode for the start position
Typical values for this parameter:
Name Description
Adjust_None The point will meet the center of the target position
Adjust_Sphere The point will meet the edge of the sphere encompassing the position
Adjust_Box The point will meet the bounding box of the sphere

FLOAT Offset

Positive to move the start point towards the center of the link


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.SetStartAdjustment(linkbar, ::Panel.LinkBar.Adjust_None, offset)

No additional examples