|
|
|
|
|
StatusBar (Property) In french: BarreDeMessage
The StatusBar property is used to: - finding out whether the status bar is displayed or not,
- display (or not) the status bar of a window.
Remark: This property corresponds to the "Status bar" option found in the "Style" tab of the window description. // Displays the status bar MyWindow.StatusBar = True
Syntax
Finding out whether the status bar is displayed or not Hide the details
<Bar displayed> = <Window>.StatusBar
<Bar displayed>: Boolean - True if the status bar is displayed,
- False if the status bar is hidden.
<Window>: Window name Name of the window used.
Displaying (or not) 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 delete the status bar.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|