WoW:XML/KEYVALUETYPE

From AddOn Studio
< XML
Revision as of 01:49, 29 July 2022 by Bear (talk | contribs) (→‎Values)
Jump to navigation Jump to search

XML UI ← XML types < KEYVALUETYPE

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

Values

  • nil - define the member, but set no value
  • boolean - interpret the value as 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.
  • global - value is a string as name to look up in the global table before setting.

Xsd

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

Details

See Also