This article is a World of Warcraft API stub. You can help expand it by editing it

UIOBJECTTYPE Inset

From Warcraft Wiki
Jump to navigation Jump to search



Examples

 <TextInsets left="2" right="2" top="0" left="0" />
 <BackgroundInsets>
    <AbsInset left="1" right="1" top="1" bottom="1" />
 </BackgroundInsets>

Note: you can either specify insets through child <AbsInset> / <RelInset> element, OR directly with attributes left, right, top, bottom. However, when you declare insets via attributes you must specify all four of them. That is, you cannot write

 <!-- Warning: This is an example of incorrect Inset object -->
 <TextInsets left="2" right="2" />


XML

Attributes

  • left (int)
  • right (int)
  • top (int)
  • bottom (int)

Elements

Only one of these elements may be used:

  • AbsInset
  • RelInset