|
|
|
|
|
VisibleOutsideWindow (Property)
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. // Place the OK Button control below the window BTN_OK.Y = MyWindow.Height + 10 // Make the Button control visible BTN_OK.VisibleOutsideWindow = True
Sintaxis
Finding out whether a Button control is visible outside the window Ocultar los detalles
<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 Ocultar los detalles
<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.
Observaciones - 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.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|