WoW:XML/Attribute
< XML
Jump to navigation
Jump to search
← XML UI ← XML properties < Attribute
The WoW XML Attribute elements add an arbitrary variable to a runtime Lua object. This mechanism is very akin to the parentKey, relativeKey, and targetKey XML attributes, in that all of these allow adding arbitrary member variables to Lua objects from WoW FrameXML. See also KeyValue.
Inheritance[edit]
Inherited by: none, Inherits: none, Defined in: Frame > Attributes
Elements[edit]
none
Attributes[edit]
- name (string) - Lua name for the attribute
- type (ATTRIBUTETYPE) - the Lua type for the attribute. Default is 'string'.
- value - the actual value for the attribute. will be converted to the Lua type defined by type at runtime
Summary[edit]
An Attribute element defines a Lua runtime object variable for the XML element.
Example[edit]
<Frame name="MyFrame"> <Attributes> <Attribute name="myvar" type="number" value="0"/> </Attributes> </Frame>
This example will set a variable named 'myvar' with a number value of '0', when the frame is created.