Widget API: GameTooltip:AddDoubleLine

From AddOn Studio
Revision as of 12:06, 10 June 2006 by WoWWiki>Mikk ({{widgetmethod}})
Jump to navigation Jump to search

Widget API ← GameTooltip < AddDoubleLine

Title -Documentation by Goatus-


tooltip:AddDoubleLine(textLeft, textRight, textLeft.r, textLeft.g,
 textLeft.b, textRight.r, textRight.g, textRight.b);


Adds Line to tooltip with textLeft on left side of line and textRight on right side


Arguments


(textLeft, textRight, textLeft.r, textLeft.g, textLeft.b, textRight.r, textRight.g, textRight.b)


textLeft
String - string which will show on left
textRight
String - string which will show on right


textLeft.r
range 0 to 1 - red color value for left string
textLeft.g
range 0 to 1 - green color value for left string
textLeft.b
range 0 to 1 - blue color value for left string


textRight.r
range 0 to 1 - red color value for right string
textRight.g
range 0 to 1 - green color value for right string
textRight.b
range 0 to 1 - blue color value for right string

Returns


nothing

Example


MyTooltip:SetOwner(TargetFrame, "ANCHOR_RIGHT");
MyTooltip:AddDoubleLine("Left", "Right", 1,0,0, 0,0,1);
MyTooltip:Show():