getPropertyNamesRaw

From RPTools Wiki
Revision as of 19:24, 9 September 2011 by Wolph42 (talk | contribs)
Jump to navigation Jump to search

 This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
 This article needs: Everything !

{{MacroFunction |name=getPropertyNamesRaw |version=1.3b64

|description= 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 this function returns only the defined properties, where getPropertyNames returns also the names of the properties of the Property Type, even if these are not defined or set to their default value.

|usage=

getPropertyNamesRaw()
getPropertyNamesRaw(delim)
getPropertyNamesRas(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]

|changes=