getAllPropertyNames: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Conversion script moved page getAllPropertyNames to GetAllPropertyNames without leaving a redirect: Converting page title to first-letter uppercase) |
(No difference)
|
Revision as of 22:15, 9 February 2023
getAllPropertyNames() Function
• Introduced in version 1.3b48
Gets a list containing the token property names that are defined in the Campaign Properties. The type of the list returned depends on the delimiter parameter.
- If the delimiter is not specified then a string list is returned and the default value of
","
is used. - If the delimiter is
"json"
then a JSON Array is returned. - Otherwise, a string list is returned using the delimiter passed in.
Usage
getAllPropertyNames()
getAllPropertyNames(type)
getAllPropertyNames(type, delim)
Parameters
type
- The name of the property set to be retrieved. Defaults to all defined token property sets. Use"*"
or""
when using a delimiter to get all sets.delim
- The delimiter to be used in the list of names returned. Default is,
If type is specified then the string list contains the property names for that token property type, otherwise it will contain the token property names for all token property types. If delim is specified then it is used to separate the values in the string list, if it is not specified then it defaults to ','.
Examples
You can use the following code to print out all of the properties in the campaign properties list..
Campaign Properties<br>
[h: props = getAllPropertyNames()]
[foreach(name, props, "<br>"): name]
If you have two token property sets, for instance "PC" and "NPC", you could print out all of the properties for the "PC" property set like so:
PC Properties<br>
[h: props=getAllPropertyNames("PC")]
[foreach(name, props, "<br>"): name]
Get the Basic properties in a JSON Array:
[r: props=getAllPropertyNames("Basic","json")]
Version Changes
- 1.3b49 - Added
json
delimiter option.