"tickPosition"
Defines where the position marks of a slider are to be drawn.
Synopsis
shape.tickPosition(string t);
Parameter
Parameter | Description |
---|---|
shape | Name of the object. |
t |
"NoTicks" - do not draw any ticks. "TicksBothSides" - draw position marks on both sides of the groove. "TicksAbove" - draw position marks above the (horizontal) slider "TicksBelow" - draw position marks below the (horizontal) slider "TicksLeft"- draw position marks to the left of the (vertical) slider "TicksRight" - draw position marks to the right of the (vertical) slider |
Description
Defines where the position marks of a slider are to be drawn.
Example
The position marks are drawn above the horizontal slider .
main()
{
this.tickPosition("TicksAbove");
}
Assignment
Slider