Visible property
Represents whether a navigator is visible.
Associate a formula with this property to determine if users should see a navigator based on information they have entered in the app, based on their email address or based on the tags you have assigned to them.
If this property is not set, it returns FALSE.
Examples
Shows a navigator only if the user has accepted the terms and conditions, specifically if the switch field TermsAcceptance of the screen MainScreen has been toggled to its "on" position.
Shows a navigator only if the value of Field1 is odd and the value of Field2 is less than 3. Both fields are part of the screen MainScreen.
Shows a navigator only if Field1, part of the screen MainScreen, is considered valid.
Shows a navigator only if all fields of the MainScreen!Field1:MainScreen!Field5MainScreen!Field1:MainScreen!Field5 range are valid (as determined by the Valid property of the fields). This range includes the two fields Field1 and Field5, which are part of the screen MainScreen, and all fields that appear between them.
The formula (MainScreen!Field1:MainScreen!Field5).Valid(MainScreen!Field1:MainScreen!Field5),Valid returns a logical array with the same number of elements as there are fields in the MainScreen!Field1:MainScreen!Field5MainScreen!Field1:MainScreen!Field5 range, like this array: { TRUE, FALSE, TRUE, TRUE, FALSE }{ TRUE; FALSE; TRUE; TRUE; FALSE }. The AND function returns TRUE only if all elements of the array are TRUE.
Shows a navigator only if all fields of the MainScreen!Field1:MainScreen!Field5MainScreen!Field1:MainScreen!Field5 range are filled out (that is, have values which are not blank). This range includes the two fields Field1 and Field5, which are part of the screen MainScreen, and all fields that appear between them.
The formula ISDEFINED(MainScreen!Field1:MainScreen!Field5)ISDEFINED(MainScreen!Field1:MainScreen!Field5) returns a logical array with the same number of elements as there are fields in the MainScreen!Field1:MainScreen!Field5MainScreen!Field1:MainScreen!Field5 range, like this array: { TRUE, FALSE, TRUE, TRUE, FALSE }{ TRUE; FALSE; TRUE; TRUE; FALSE }. The AND function returns TRUE only if all elements of the array are TRUE.
Shows a navigator only if the signed-in user has an email address that ends with "example.com". (To enable users to sign in, make your app private.)
Shows a navigator only if the signed-in user is associated with the tag "Employee". (To enable users to sign in, make your app private.)