WoW:XML/RelValue

From AddOn Studio
< XML
Revision as of 19:42, 23 September 2012 by Bear (talk | contribs) (Created page with "{{uixmltype}} < Value ''Important Note: there is no known use of this property or examples of it actually being used in a working way.'' [[XML/RelValue|RelValu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

XML UI ← XML types < RelValue

Important Note: there is no known use of this property or examples of it actually being used in a working way.

RelValue is a type used for defining a single value relate to relating to size or position in the the UI coordinate system. See RelDimension and Dimension for value pair use types. RelValue is used for properties such as FontHeight and TileSize.

Inheritance

Inherited by: none, Inherits: none, Defined in: Value

Elements

none

Attributes

  • val (float) - defines a scalar value

Summary

RelValue facilitates the 'Layout' mechanism in the WoW UI. See the AbsDimension and Dimension for numerical value pairs use types. RelValue is the 'scalar' property version in Value, where <AbsValue> is the 'unit based' value property version.

Example

Note: this is an example for documentation completeness purposes. RelValue has no known working use at this time.

<Frame name="MyFrame">
  <Size x="200" y="200"/>
  <Layers>
    <Layer>
      <FontString text="Bob" inherits="MyFont">
        <Size x="100" y="100"/>
        <FontHeight>
          <RelValue val="12.5"/>
        </FontHeight>
        <Anchors>
          <Anchor point="TOP"/>
        </Anchors>
      </FontString>
    </Layer>
  </Layers>
</Frame>

This example demonstrates use of FontHeight using Rel values.

Details