WoW:API Region GetHeight: Difference between revisions
Jump to navigation
Jump to search
GetHeight -Documentation by AeroBrain-
m (Updated format) |
No edit summary |
||
Line 23: | Line 23: | ||
;''Result'' | ;''Result'' | ||
: The frame named 'myAddonOptions' would be set to half the height of its parent frame. | : The frame named 'myAddonOptions' would be set to half the height of its parent frame. | ||
---- | ---- | ||
{{ | {{WoW API}} | ||
Revision as of 05:15, 4 January 2006
Gets the height of a frame-based object.
height = FrameLayout:GetHeight();
- Arguments
- none
- Returns
- height
- height
- Number - The height of the frame-based object.
- 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.