ShowInfoBar
Script function

world.ShowInfoBar

DOC_scripting Read about scripting

Type

Method

Summary

Shows or hides the "info" tool bar

Prototype

void ShowInfoBar(BOOL Visible);

DOC_data_types View list of data type meanings


Description

Use this to show or hide the "info" toolbar (the one above the status line).


VBscript example

world.ShowInfoBar vbTrue  ' show bar

world.ShowInfoBar vbFalse  ' hide bar



Jscript example

world.ShowInfoBar (true); // show bar

world.ShowInfoBar (false); // hide bar



PerlScript example

$world->ShowInfoBar (1); # show bar

$world->ShowInfoBar (0); # hide bar



Python example

world.ShowInfoBar (true) # show bar

world.ShowInfoBar (false) # hide bar



Lua example

ShowInfoBar (true) -- show bar

ShowInfoBar (false) -- hide bar



Lua notes

The Visible flag is optional, and defaults to true.



Return value

Nothing.




See Also ...

Topic

DOC_infobar Info bar - programmable information bar

Functions

FNC_Info Info (Adds text to the "info" tool bar)
FNC_InfoBackground InfoBackground (Sets the background colour for the info bar)
FNC_InfoClear InfoClear (Clears all text from the info bar)
FNC_InfoColour InfoColour (Sets the colour of the foreground (text color) for the info bar)
FNC_InfoFont InfoFont (Changes the font, font size and style for text on the info bar)
FNC_SetStatus SetStatus (Sets the status line text)

(Help topic: function=ShowInfoBar)

DOC_contents Documentation contents page