Returns the BotShape or CellShape object.
The Shape property is used for modifying the Bot and Cell object appearance. When called from a collection, it modifies all member objects the same way.
If the object the method applies to is a Bot, Group, or Bots object, then the method returns a BotShape object. If the object the method applies to is a Cell, Region, or Cells object, then the method returns a CellShape object.
The Icon property is the default property for the BotShape object. The Style3D property is the default property for the CellShape object.
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