Built-in macros: $ApplicationTitle

The $ApplicationTitle macro is replaced by the value specified in the ApplicationTitle attribute of the profile the code is currently compiled for.

Content

"text"

Discussion

This macro contains a string literal. If the attribute ApplicationTitle is not explicitly specified, the macro results in an empty string literal "". The value of the original attribute ApplicationTitle has no direct effect on the function of the GUI application. It serves as a description for your application. This description can be evaluated in the target system and, for example, be shown in a caption bar of a desktop window, etc..

The macro $ApplicationTitle can be used inside a regular Chora expression wherever a string operand is allowed. For example, you can use the macro to show the title in a text view:

SomeTextView.String = "The application title is: " + $ApplicationTitle;