Returns or sets the unique identifier for the object. Read/write String.
When a Cell or Bot is created, a default Name value is automatically assigned. Duplicate Name values are not allowed within the Bots or Cells collections because Name is used as a lookup key into these collections.
The Name property should not be confused with the index value that is returned by the GetIndex method, which returns the relative position within the collection.
Object names are case-insensitive. For example, the names "George" and "george" are interpreted as the same name.
The following example sets the Name property of a Bot object, adds the Bot to a Group named "Males", and then changing the Bot object's icon to vbtMale.
Bot.Name = "George"
Males.Add Bot
Males("George").Shape.Icon = vbtMale