WoW:API Frame SetMaxResize: Difference between revisions
Jump to navigation
Jump to search
({{widgetmethod}}) |
m (Move page script moved page API Frame SetMaxResize to API Frame SetMaxResize without leaving a redirect) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{widgetmethod}} | {{widgetmethod}} | ||
Specifies the maximum width and height that the object can be resized to. | Specifies the maximum width and height that the object can be resized to. |
Latest revision as of 04:45, 15 August 2023
← Widget API ← Frame < SetMaxResize
Specifies the maximum width and height that the object can be resized to.
obj:SetMaxResize(maxWidth,maxHeight);
- Arguments
- maxWidth
- The maximum width the object can be resized to.
- maxHeight
- The maximum height the object can be resized to.
- Returns
- nil
- Example
myAddonFrame:SetMaxResize(320,240);
- Result
- The frame named 'myAddonFrame' could only be resized by the user to a maximum width of 320 and a maximum height of 240.
- Description
- Specifies the maximum width and height that the object can be resized to.