WoW:API Frame SetMinResize: Difference between revisions
Jump to navigation
Jump to search
SetMinResize -Documentation by AeroBrain-
No edit summary |
mNo edit summary |
||
Line 30: | Line 30: | ||
---- | ---- | ||
{{Template:WoW API}} | {{Template:WoW API}} | ||
[[Category:API Functions|Frame SetMinResize]] | |||
[[Category:API Frame Functions|Frame SetMinResize]] |
Revision as of 12:39, 27 August 2005
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.