List of GCA character interface objects
From GCAWiki
This is a list of character interface objects exposed to sheets by GCA.
| Object | Example | Description |
|---|---|---|
| BodyPartCollection | Char.Body.[...]Chars(c).Body.[...]
| For accessing character body part collections. Primarily referenced via the Body property of the Character object. |
| BodyPart | Char.Body(i).[...]Chars(c).Body(i).[...]
| For accessing character body parts. Primarily referenced via the Item property of the BodyPartCollection object. |
| CampaignInfo | Char.Campaign.[...]Chars(c).Campaign.[...]
| For accessing character campaign information. Primarily referenced via the Campaign property of the Character object. |
| Character | Char.[...]Chars(c).[...]
| For accessing character information. The base interface object from which most all other objects are accessed. Primarily referenced via the Char variable and the Chars collection. |
| LogEntryCollection | Char.Campaign.Log.[...]Chars(c).Campaign.Log.[...]
| For accessing character campaign log collection. Primarily referenced via the Log property of the CampaignInfo object. |
| LogEntry | Char.Campaign.Log(i).[...]Chars(c).Campaign.Log(i).[...]
| For accessing character campaign log entries. Primarily referenced via the Item property of the LogEntryCollection object. |
| SortedItemCollection | Char.Items.[...]Chars(c).Items.[...]Char.ItemsByType(type).[...]Chars(c).ItemsByType(type).[...]
| For accessing character trait collections. Primarily referenced via the Items property and ItemsByType property of the Character object. |
| TraitItem | Char.Items(i).[...]Chars(c).Items(i).[...]Char.ItemsByType(type)(i).[...]Chars(c).ItemsByType(type)(i).[...]
| For accessing character traits. Primarily referenced via the Item property of the SortedItemCollection object. |