getPropertyNamesRaw: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Not a stub anymore)
(Confusion between getAllPropertyNames and getPropertyNames, clarifying function's origin and a few typos.)
Line 1: Line 1:
{{MacroFunction |name=getPropertyNamesRaw |version=1.3b64
{{MacroFunction |name=getPropertyNamesRaw |version=1.3b64
|description=
|description=
Returns a [[String List]] or [[JSON Array]] containing the names of the [[Token Property|Token Properties]] on a [[Token]]. The type of the value returned depends on the delimiter parameter. The difference between this function and [[getAllPropertyNames|getAllPropertyNames()]] is not clear to me. The only noticeable difference is that [[getAllPropertyNames|getAllPropertyNames()]] returns all the property names in lower case.  
Returns a [[String List]] or [[JSON Array]] containing the names of the [[Token Property|Token Properties]] on a [[Token]]. The type of the value returned depends on the delimiter parameter.
 
The difference between this function and [[getPropertyNames|getPropertyNames()]] is that [[getPropertyNames|getPropertyNames()]] returns all the property names in lower case (see [http://forums.rptools.net/viewtopic.php?f=1&t=12563&p=148937&hilit=getPropertyNamesRaw#p148937 this forum thread] to get the reason why it was created).  


|usage=
|usage=
Line 11: Line 13:
</source>
</source>
<source lang="mtmacro" line>
<source lang="mtmacro" line>
getPropertyNamesRas(delim, id)
getPropertyNamesRaw(delim, id)
</source>
</source>
'''Parameters'''
'''Parameters'''
Line 26: Line 28:
|changes=None.}}
|changes=None.}}
===Notes===
===Notes===
When token properties are created during campaign, they are persistent in the MapTool campaign, regardless of whether they are editable in the Edit Token window. In other words, even though a property is removed from the campaign properties, it remains available in the MapTool code. ''getPropertyNamesRaw()'' will return ''all'' token properties that exist or have ever existed in the particular campaign, even if users cannot directly edit those properties (''i.e.'', they do not appear in the token's properties when you double click on a token). To get only properties that are currently visible and editable, use [[getAllPropertyNames|getAllPropertyNames()]].
When token properties are created during campaign, they are persistent in the MapTool campaign, regardless of whether they are editable in the ''Edit Token'' window. In other words, even though a property is removed from the campaign properties, it remains available in the MapTool code. [[getPropertyNamesRaw|getPropertyNamesRaw()]] will return ''all'' token properties that exist or have ever existed in the particular campaign, even if users cannot directly edit those properties (''i.e.'', they do not appear in the token's properties when you double click on a token). To get only properties that are currently visible and editable, use [[getAllPropertyNames|getAllPropertyNames()]].
[[Category:Token Function]]
[[Category:Token Function]]

Revision as of 21:01, 30 January 2012

getPropertyNamesRaw() Function

Introduced in version 1.3b64
Returns a String List or JSON Array containing the names of the Token Properties on a Token. The type of the value returned depends on the delimiter parameter. The difference between this function and getPropertyNames() is that getPropertyNames() returns all the property names in lower case (see this forum thread to get the reason why it was created).

Usage

getPropertyNamesRaw()
getPropertyNamesRaw(delim)
getPropertyNamesRaw(delim, id)

Parameters

  • delim - The delimiter used to separate the values in the String List, defaults to ",". Returns a JSON Array if set to "json".
  • id - The token id of the token which has its property names returned, defaults to the Current Token.

     Note: This parameter can only be used in a Trusted Macro

Example

To display the names of all of the properties on the current token use.
[h: names = getPropertyNamesRaw()]
[foreach(name, names, "<br>"): name]


Version Changes

None.

Notes

When token properties are created during campaign, they are persistent in the MapTool campaign, regardless of whether they are editable in the Edit Token window. In other words, even though a property is removed from the campaign properties, it remains available in the MapTool code. getPropertyNamesRaw() will return all token properties that exist or have ever existed in the particular campaign, even if users cannot directly edit those properties (i.e., they do not appear in the token's properties when you double click on a token). To get only properties that are currently visible and editable, use getAllPropertyNames().