View Single Post
04/25/14, 12:28 PM   #2
Fathis Ules
Thief Guild Master
 
Fathis Ules's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 42
I believe you will need something like (sorry only working with LUA not xml)

Lua Code:
  1. local line  = CreateControl(nil, <youraddonwindowobject>,  CT_LINE)
  2. line:SetAnchor(TOPLEFT, <youraddonwindowobject>, TOPLEFT, 0, 10)
  3. line:SetAnchor(TOPRIGHT, <youraddonwindowobject>, TOPRIGHT, 0, 10)

to see methods of line http://wiki.esoui.com/Controls#LineControl
  Reply With Quote