WoW:XML/KEYVALUETYPE
< XML
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 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.
- global - value is looked 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>