Positions the Pen object in the up position. An object's path is not drawn as it moves.
object expression.Up
object expression Required. An object expression that evaluates to an object in the Applies To list.
This method is equivalent to setting the Visible property to False.
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