Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
Window.Resize
Resizes the window animated.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
Window | 2.2 | ✅ Yes | ✅ Yes | ❌ No | ❌ No | ❌ No |
MBS( "Window.Resize"; WindowRef; width; height { ; NoAnimation; Duration } ) More
Parameters
Parameter | Description | Example | Flags |
---|---|---|---|
WindowRef | Window Reference is the unique OS level window ID. You can obtain this by using the Window.FindByTitle or Window.FindByIndex functions. Pass zero to access the frontmost window. | 0 | |
width | The new width of the window. | 300 | |
height | The new height of the window. | 200 | |
NoAnimation | Whether to avoid animation. Pass 1 to disable animation. Default is 0 to allow animation. | 0 | Optional |
Duration | The duration in seconds. Can be a value between 0.1 and 5.0. | 0.5 | Optional |
Result
Returns OK on success.
Description
Resizes the window animated.On macOS we use Apples functions for animated resizing. On Windows we have our own code. Please make sure on Windows that the window is not maximized as resizing a maximized window puts it in a mode where you can't manual resize it.
Examples
Resizes a window:
MBS("Window.Resize"; $WindowRef; 300; 200)
Resize main window on windows:
MBS("Window.Resize"; "FileMaker Pro Advanced"; 800; 600)
See also
- Window.FindByIndex
- Window.FindByTitle
- Window.Resizable
- Window.ResizeContentView
- Window.SetMaxHeight
- Window.SetMaxWidth
- Window.SetMinHeight
- Window.SetMinWidth
- Window.SetTitlebarAppearsTransparent
Release notes
- Version 11.2
- Deprecated Window.ResizeContentView, Window.GetTitlebarAppearsTransparent and Window.SetTitlebarAppearsTransparent functions.
Example Databases
Blog Entries
- MBS Filemaker Plugin, version 2.7fc
- MBS Filemaker Plugin 2.7 Release notes
- MBS Filemaker Plugin, version 2.5pr3
- MBS Filemaker Plugin, version 2.2pr4
This function checks for a license.
Created 18th August 2014, last changed 10th August 2020