WoW:API GameTooltip AddDoubleLine: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
({{widgetmethod}})
Line 1: Line 1:
{{widgetmethod}}
<center>'''Title''' ''-Documentation by [[user:Goatus|Goatus]]-''</center>
<center>'''Title''' ''-Documentation by [[user:Goatus|Goatus]]-''</center>


Line 45: Line 47:
  MyTooltip:AddDoubleLine("Left", "Right", 1,0,0, 0,0,1);
  MyTooltip:AddDoubleLine("Left", "Right", 1,0,0, 0,0,1);
  MyTooltip:Show():
  MyTooltip:Show():
----
{{Template:WoW API}}

Revision as of 12:06, 10 June 2006

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():