Shortcut Considerations

An expression of the form

PAGE.pagename.property

is equivalent to GetPage(PAGE.name).property. For example, the following two lines of code are equivalent:

PAGE.MANAGER_APPROV.DisplayOnly = False;

GetPage(PAGE.MANAGER_APPROV).DisplayOnly = False;