WoW:XML/ATTRIBUTETYPE

From AddOn Studio
< XML
Revision as of 06:55, 19 September 2013 by Bear (talk | contribs) (Created page with "{{uixmltype}} ATTRIBUTETYPE is an WoW UI XML enumeration used for specifying the Lua type in XML for a runtime UIOBJECT. == Values == * nil - define the member, but set no v...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

XML UI ← XML types < ATTRIBUTETYPE

ATTRIBUTETYPE is an WoW UI XML enumeration used for specifying the Lua type in XML for a runtime UIOBJECT. See also KEYVALUETYPE.

Values

  • nil - define the member, but set no value
  • boolean - interpret the value to boolean before setting
  • number - interpret the value as a Lua number before setting
  • string - interpret the value as a string before setting. the usual default.

Xsd

<xs:restriction base="xs:NMTOKEN">
  <xs:enumeration value="nil"/>
  <xs:enumeration value="boolean"/>
  <xs:enumeration value="number"/>
  <xs:enumeration value="string"/>
</xs:restriction>

Details

See Also