WoW API type: UIOBJECTTYPE Inset

From AddOn Studio
Jump to navigation Jump to search

API types

Examples[edit]

 <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[edit]

Attributes[edit]

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

Elements[edit]

Only one of these elements may be used:

  • AbsInset
  • RelInset