WoW:XML/KEYVALUETYPE: Difference between revisions

From AddOn Studio
< XML
Jump to navigation Jump to search
m (Move page script moved page XML/KEYVALUETYPE to XML/KEYVALUETYPE without leaving a redirect)
 
(No difference)

Latest revision as of 04:49, 15 August 2023

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

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

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

See Also[edit]