Label property

FormScreen.Label — Text

The label of the screen, which serves as its title. The title is normally displayed as part of the navigation bar.

If this property is not set, it returns the title set for this screen in Calcapp Creator.

Example

"Data entry" & IF(!Field1.Valid, " ⚠️")"Data entry" & IF(!Field1,Valid; " ⚠️")

Sets the screen label to "Data entry" if Field1 is valid (by consulting its Valid property). If Field1 is not valid, the screen label is set to "Data entry ⚠️" (with a warning triangle).