|
|
|
|
|
MovableByBackground (Property) In french: DéplaçableParLeFond
Warning
From version 27 (87), MoveableByBackground is kept for backward compatibility. This property is replaced by MovableByBackground.
The MovableByBackground property is used to: - finding out whether a window can be moved by the background,
- allowing (or not) a window to be moved by the background.
Remarks: - When movable by background is enabled, the user can move the window with the mouse. To do so, click the window background and keep the mouse button down until the window is dragged to the requested location.
- This property corresponds to the "Move by background " option in the "UI" tab of the window description.
// Allow the window to be moved by the background MyWindow.MovableByBackground = True
Syntax
Finding out whether a window can be moved by the background Hide the details
<Movable Window> = <Window used>.MovableByBackground
<Movable Window>: Boolean - True to allow the window to be moved by the background,
- False if the window cannot be moved by the background.
<Window used>: Window name Name of the window used.
Allowing (or not) a window to be moved by the background Hide the details
<Window used>.MovableByBackground = <Movable>
<Window used>: Window name Name of the window used. <Movable>: Boolean - True to allow the window to be moved by the background,
- False to forbid the window to be moved by the background.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|