|
|
|
|
|
StatusBar (Property) In french: BarreDeMessage
The StatusBar property is used to: - determine whether or not the status bar is displayed,
- show or hide the status bar of a window.
Note This property corresponds to the "Status Bar" option in the "Style" tab of the window description.
MyWindow.BarreDeMessage = True
Syntax
Determining whether or not the status bar is displayed Hide the details
<Bar displayed> = <Window>.StatusBar
<Bar displayed>: Boolean - True if the status Bar is displayed,
- False if the status Bar is invisible.
<Window>: Window name Name of the window used.
Showing or hiding the status bar Hide the details
<Window>.StatusBar = <Status bar>
<Window>: Window name Name of the window used. <Status bar>: Boolean - True to display the status Bar,
- False to remove the status bar.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|