WoW:XML/AbsValue: Difference between revisions
< XML
Jump to navigation
Jump to search
(Created page with "{{uixmltype}} AbsValue is a type used for defining a single value relate to relating to size or position in the the UI coordinate system. See the [[XML/AbsDi...") |
m (Move page script moved page XML/AbsValue to XML/AbsValue without leaving a redirect) |
(No difference)
|
Latest revision as of 04:49, 15 August 2023
← XML UI ← XML types < AbsValue
AbsValue is a type used for defining a single value relate to relating to size or position in the the UI coordinate system. See AbsDimension and Dimension for value pair use types. AbsValue is used for properties such as FontHeight and TileSize.
Inheritance[edit]
Inherited by: none, Inherits: none, Defined in: Value
Elements[edit]
none
Attributes[edit]
- val (int) - defines a unit based value
Summary[edit]
AbsValue facilitates the 'Layout' mechanism in the WoW UI. See the AbsDimension and Dimension for numerical value pairs use types. AbsValue is the 'unit based' property version in Value, where <RelValue> is the 'scalar' value property version.
Example[edit]
<Frame name="MyFrame"> <Size x="200" y="200"/> <Layers> <Layer> <FontString text="Bob" inherits="MyFont"> <Size x="100" y="100"/> <FontHeight> <AbsValue val="12"/> </FontHeight> <Anchors> <Anchor point="TOP"/> </Anchors> </FontString> </Layer> </Layers> </Frame>
This example demonstrates use of FontHeight using Abs values.