Down Method

See Also Applies To Example Model

Positions the Pen object in the down position for drawing an object's path as it moves.

object expression.Down

object expression    Required. An object expression that evaluates to an object in the Applies To list.

Remarks

This method is equivalent to setting the Visible property to True.

Example

The following example uses Pen object properties and methods to draw a star shape.

Bot.Pen.Color = vbtBlueGrey
Bot.Pen.Style = vbtSolid
Bot.Pen.Width = 4
Bot.Pen.Down
For Segment = 1 To 5
     Bot.Step 80
     Bot.Turn 144
Next Segment
Bot.Pen.Up