WoW:XML/Attribute: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Created page with " The WoW Attribute type adds an arbitrary variable to a runtime Lua object. This mechanism is very akin to the parentKey, relativeKey, an...")
 
m (Move page script moved page XML/Attribute to WoW:XML/Attribute without leaving a redirect)
 
(No difference)

Latest revision as of 04:49, 15 August 2023

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

Inherited by: none, Inherits: none, Defined in: Frame > Attributes

Elements

none

Attributes

  • 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

An Attribute element defines a Lua runtime object variable for the XML element.

Example

<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.