WoW:XML/ATTRIBUTETYPE

From AddOn Studio
< XML
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[edit]

  • 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[edit]

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

Details[edit]

See Also[edit]