WoW:XML/SCRIPTINHERITTYPE

From AddOn Studio
< XML
Revision as of 06:02, 27 November 2020 by Bear (talk | contribs) (Created page with "{{uixmltype}} SCRIPTINHERITTYPE is an WoW UI XML enumeration used for specifying event script execution order in XML for a Script in Scripts. See also [[XML/ATTRIBUTETYPE|ATT...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

XML UI ← XML types < SCRIPTINHERITTYPE

SCRIPTINHERITTYPE is an WoW UI XML enumeration used for specifying event script execution order in XML for a Script in Scripts. See also SCRIPTINTRINSICORDERTYPE.

Values

  • nil - override any inherited scripts, other scripts will not be run
  • prepend - run this script before any other previously inherited scripts
  • append - run this script after any other previously inherited scripts
  • none - no inheritance, same as 'nil' above

Xsd

<xs:simpleType name="SCRIPTINHERITTYPE">
  <xs:restriction base="xs:NMTOKEN">
    <xs:enumeration value="prepend"/>
    <xs:enumeration value="append"/>
    <xs:enumeration value="none"/>
  </xs:restriction>
</xs:simpleType>

Details

See Also