WoW:API Frame SetMinResize

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

Specifies the minimum width and height that the object can be resized to.

obj:SetMinResize(minWidth,minHeight);

Arguments
minWidth
The minimum width the object can be resized to.
minHeight
The minimum height the object can be resized to.

Returns
nil

Example
myAddonFrame:SetMinResize(8,8);
Result
The frame named 'myAddonFrame' could only be resized by the user to a minimum width of 8 and a maximum height of 8.

Description
Specifies the minimum width and height that the object can be resized to.

Template:WoW API