Skip to main content
Version: Streamsheets 2.4

DRAW.KNOB

Define a graphical knob on a given drawing.

Syntax

=DRAW.KNOB(X,Y,Width,Height,lineColor,FillColor,AngleLabel,Value,Min,Max,Step,Marker,FormatRange,StartAngle,EndAngle)

Arguments

NameDescription
XX Coordinate in 1/100th mm
YY Coordinate in 1/100th mm
WidthWidth in 1/100th mm
HeightHeight in 1/100th mm
LineColorOptional. Options:
- None for no line
- Hexadecimal color value (#FF0000 for Red)
FillColorOptional. - Hexadecimal color value ("#FF0000" for Red)
AngleOptional. Angle in radians.
LabelLabel to display
ValueOptional. Current state of the button. TRUE for pushed and FALSE for released. If a cell reference is used, a value change from user interaction will be pushed into that cell.
MinMinimum value displayed in the knob.
MaxMaximum value displayed in the knob.
StepStep to use for interaction while changing the knob value.
MarkerOptional. Marker style to indicate the current value. Allowed values are:
none
arrowinner
line
circlesmall
Default is a large circle.

Return Value

TRUE, if button could be created.

Example

FunctionResultComment
=DRAW.KNOB(8711,14368,9578,3942,,,,"Knob",50,0,100,5,,0,0.52,5.76)TRUEA knob with an interval from 0 to 100 and a step value of 5. Current Value is 50.