setAttributes: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 9: Line 9:
'''Operand types:'''
'''Operand types:'''


'''text:''' [[Text]] or [[String]]
'''text:''' [[String]]


'''[name1, value1, name2, value2, ...]:''' [[Array]]
'''[name1, value1, name2, value2, ...]:''' [[Array]]
Line 24: Line 24:


Returns a structured text created by the given structured or plain text by setting attributes to the given values.  
Returns a structured text created by the given structured or plain text by setting attributes to the given values.  


'''Example:'''
'''Example:'''


txt = img '''setAttributes''' ["image", "data\iSoldier.paa"]
txt = img '''setAttributes''' ["image", "data\iSoldier.paa"]

Revision as of 20:50, 4 July 2006


text setAttributes [name1, value1, name2, value2, ...]


Operand types:

text: String

[name1, value1, name2, value2, ...]: Array

Type of returned value:

Structured Text

Compatibility:

Version 2.01 required.

Description:

Returns a structured text created by the given structured or plain text by setting attributes to the given values.


Example:

txt = img setAttributes ["image", "data\iSoldier.paa"]