API Panel.LinkBar.SetBarGfx

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 position for the start point of the bar

Class hierarchy

Panel

LinkBar
SetBarGfx

Parameters

HANDLE LinkBar

The handle to the bar to alter

ULONG Mode

The graphics mode to draw the bar with
Typical values for this parameter:
Name Description
Bar_None No bar is drawn between the start or end points
Bar_Line A line is drawn connecting the start and end
Bar_Cone A 3D cone is drawn connecting the start and end points
Bar_Cylinder A cylinder is drawn connecting the start and end points

ULONG RGBA

The red, green, blue value to colour the point with

FLOAT Radius

The scale to use for 3D modes


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.SetBarGfx(linkbar, ::Panel.LinkBar.Bar_None, rgba, radius)

No additional examples