|
|
|
|
|
VisibleOutsideWindow (Property) In french: VisibleHorsFenêtre
The property VisibleOutsideWindow property property allows you to: - determine if a button is visible even if its position (X,Y) is outside the border of the window (entirely or partially).
- modify the visibility of an "off-window" Button control.
Attention To use the VisibleOutsideWindowproperty, the current window must have a cropped frame. Otherwise, the property has no effect.
BTN_OK.Y = MyWindow.Hauteur + 10
BTN_OK.VisibleHorsFenêtre = True
Syntax
Finding out whether a Button control is visible outside the window Hide the details
<Result> = <Button control>.VisibleOutsideWindow
<Result>: Boolean - True if the Button control is visible outside the window,
- False otherwise.
<Button control>: Control name Name of Button control to use.
Modifying the visibility of a Button control outside the window Hide the details
<Button control>.VisibleOutsideWindow = <Visibility>
<Button control>: Control name Name of Button control to use <Visibility>: Boolean - True if the Button control must be visible outside the window,
- False otherwise.
Remarks - The Button control will not be visible if it is positioned above or to the left of the window (Y<0 or X<0 property). To be made visible or invisible, the Button control must be positioned below or to the right of the window.
- The Button control will not be visible if the Visible property is set to False.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|