Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
(Changing Aerobrain to Omnigrok (user switched handles))
m (catfix, Replaced: {{widgetmethod}}<br> → {{widgetmethod}})
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
  +
{{widgetmethod}}
<center>'''SetHeight''' ''-Documentation by [[User:Omnigrok|Omnigrok]]-''</center>
 
   
 
Sets the desired height of a frame-based object.
 
Sets the desired height of a frame-based object.
Line 27: Line 27:
   
 
: Sets the height of a frame-based object.
 
: Sets the height of a frame-based object.
 
----
 
{{Template:WoW API}}
 

Revision as of 23:49, 14 July 2008

Sets the desired height of a frame-based object.

obj:SetHeight(height);

Arguments
height
The desired height to set the frame-based object to (use 0 to clear the desired height). Note that a frame whose height is determined based on its anchors will not use this height.

Returns
nil

Example
myAddonOptionsParent = myAddonOptions:GetParent();
myAddonOptions:SetHeight(myAddonOptionsParent:GetHeight() / 2);
Result
The frame named 'myAddonOptions' would be set to half the height of its parent frame.

Description
Sets the height of a frame-based object.