WoW:API Region SetHeight

From AddOn Studio
Revision as of 18:01, 15 May 2006 by WoWWiki>ClydeJr (Changing Aerobrain to Omnigrok (user switched handles))
Jump to navigation Jump to search
SetHeight -Documentation by Omnigrok-

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.

Template:WoW API