|
|
|
|
|
- Non-resizable windows
- Display mode
- Buttons of title bar
- Parent window/Child window
- Equivalent functions
WinSize (Function) In french: FenTaille WinSize: - returns or modifies the window display mode (maximized, minimized or normal)
Feature not available. - modifies the window height and/or width,
- moves the window and modifies a window's height and/or width.
// Increase the width and height of "WIN_Edit" window WinSize(WIN_Edit, WIN_Edit.Width + 20, WIN_Edit.Height + 30)
Syntax
Modifying the window height and/or width Hide the details
WinSize(<Window> , <Width> , <Height>)
<Window>: Window name Name or alias of the window to be used. If this parameter corresponds to an empty string (""), the width and/or height of current window is modified. <Width>: Integer New total window width. This value must be between the minimum and maximum width (returned by the MinWidth and MaxWidth properties). To get the current width of a window, use Width. To avoid modifying this parameter, use the Default constant. <Height>: Integer New total window height. This value must be between the minimum and maximum height (returned by the MinHeight and MaxHeight properties). To get the current height of a window, use Height. To avoid modifying this parameter, use the Default constant.
Moving a window and/or modifying its height and/or width Hide the details
WinSize(<Window> , <Horizontal position> , <Vertical position> , <Width> , <Height>)
<Window>: Window name Name or alias of the window to be used. If this parameter corresponds to an empty string (""), the width and/or height of current window is modified and the current window is moved. <Horizontal position>: Integer New horizontal position of window in relation to the upper-left corner of the screen. To avoid modifying this parameter, use the Default constant. <Vertical position>: Integer New vertical position of window in relation to the upper-left corner of the screen. To avoid modifying this parameter, use the Default constant. <Width>: Integer New total window width. This value must be between the minimum and maximum width (returned by the MinWidth and MaxWidth properties). To get the current width of a window, use Width. To avoid modifying this parameter, use the Default constant. <Height>: Integer New total window height. This value must be between the minimum and maximum height (returned by the MinHeight and MaxHeight properties). To get the current height of a window, use Height. To avoid modifying this parameter, use the Default constant. Remarks WinSize is used to modify the window size even if this window is a "non-resizable" window.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|