setStrProp: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(New page: ==Function setStrProp== Returns a[Macros:string property list|string property list]] with the key set to the value passed in. ==Usage== <source lang="mtmacro" line> [h: props = setStrPr...)
 
No edit summary
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
==Function setStrProp==
{{MacroFunction
|name=setStrProp
|version=1.3b42
|description=
Returns a [[String Property List]] with the key set to the value passed in.


Returns a[Macros:string property list|string property list]] with the key set to the value passed in.  
|usage=
<syntaxhighlight lang="mtmacro" line>
setStrProp(propList, key, value)
</syntaxhighlight>
'''Parameters'''
{{param|propList|The [[String Property List]] affected by this function.}}
{{param|key|The key in the specified [[String Property List]] that will have its value set.}}
{{param|value|The value that the specified key will be set to.}}


==Usage==
|examples=
<source lang="mtmacro" line>
Add a new key to an existing [[String Property List]]:
[h: props = setStrProp(propList, key, value)]
<syntaxhighlight lang="mtmacro" line>
</source>
[h: weapon = "name=longsword; damage=1d8; maxdamage=8"]
[h: weapon = setStrProp(weapon, "value", 10)]
[r: weapon]
</syntaxhighlight>
Returns {{code|"name{{=}}longsword ; damage{{=}}1d8 ; maxdamage{{=}}8 ; value{{=}}10 ; "}}


Change the value of a key in an existing [[String Property List]]:
<syntaxhighlight lang="mtmacro" line>
[h: weapon = "name=longsword; damage=1d8; maxdamage=8"]
[h: weapon = setStrProp(weapon, "damage", "1d6")]
[r: weapon]
</syntaxhighlight>
Returns {{code|"name{{=}}longsword ; damage{{=}}1d6 ; maxdamage{{=}}8 ; "}}


===Examples===
|also=
<source lang="mtmacro" line>
{{func|getStrProp}}
[h: weapon = "name=longsword; damage=1d8; maxdamage=8"]
}}
[h: weapon = setStrProp(weapon, "value", 10)]
[[Category:String Property List Function]]
</source>
Returns "longsword".

Latest revision as of 20:33, 14 March 2023

setStrProp() Function

Introduced in version 1.3b42
Returns a String Property List with the key set to the value passed in.

Usage

setStrProp(propList, key, value)

Parameters

  • propList - The String Property List affected by this function.
  • key - The key in the specified String Property List that will have its value set.
  • value - The value that the specified key will be set to.

Examples

Add a new key to an existing String Property List:
[h: weapon = "name=longsword; damage=1d8; maxdamage=8"]
[h: weapon = setStrProp(weapon, "value", 10)]
[r: weapon]

Returns "name=longsword ; damage=1d8 ; maxdamage=8 ; value=10 ; "

Change the value of a key in an existing String Property List:

[h: weapon = "name=longsword; damage=1d8; maxdamage=8"]
[h: weapon = setStrProp(weapon, "damage", "1d6")]
[r: weapon]
Returns "name=longsword ; damage=1d6 ; maxdamage=8 ; "

See Also