AppSetStatusBarTextΒΆ

AppSetStatusBarText prints text into the status bar

bool = AppSetStatusBarText(ssString1)
bool = AppSetStatusBarText(ssString1, ssString2)
bool = AppSetStatusBarText(ssString1, ssString2, ssString3)

Return Value

If the function succeeds, the return value is TRUE (1); otherwise it is FALSE (0).

Parameters

ssString1

ssString1 is the text for the left part of the status bar.

ssString2

ssString2 is the text for the middle part of the status bar.

ssString3

ssString3 is the text for the right part of the status bar.

Comment

If one of the strings has the length 0, the status bar text will not be changed.

Example

Print the string "Ready" in the middle field of the status bar and leave the text in the other fields untouched:

* AppSetStatusBarText("", "Ready");

id-1496775