Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Show or hide the current screen.

Syntax

SHOW_CURRENT_FORM(bShow) 

Parameters

bShow

Required. A boolean value that indicates whether to show the current screen.

...

Return Value

None

Example

Show the current screen (in an arrival script):

     vHandle_ARRIVE: function(oPayload, oPreviousForm)
   {
     var bReturn = true;
     SHOW_CURRENT_FORM(true);

...