BotShape Object

See Also Properties Methods Events Model
World
Bots
Bot
BotShape

Exposes functionality for modifying the Bot object's appearance.

Using the BotShape Object

The BotShape object is used to modify the appearance of a Bot object.

Each Bot object has its own BotShape object.

The Icon property is the default for property for this object.

Example

The following example accesses the BotShape object via the Shape Property of the Bots collection object to change the appearance of all Bot objects.

With Bots.Shape
     .Size = 15
     .FillColor = vbtLightYellow
     .ForeColor = vbtBlack
     .Icon = vbtButterfly
     .Orient = vbtRotate
End With