NotifyDescription.Default
Syntax:
Parameters:
<ProcedureName> (required)
The name of the exported module procedure that will be called.
<Modul> (required)
The program module that contains the procedure that will be called.
When you use type ManagedForm , the module method of the specified managed form will be called.
When you use type CommonModule , the method of the shared non-global module will be called.
When you use type CommandInterfaceCommand , the module method of the command interface command will be called.
An object of this type can be obtained only from the command module.
To obtain references to it, the “ThisObject” property should be used.
It is available in the context of the command module and similar to the ThisForm property in the form module.
<Parameters> (optional)
A value of any type that will be transferred as the last parameter to the specified procedure when there is a call.
Default value: Undefined.
<ErrorHandlerProcedureName> (optional)
<ErrorHandlerModule> (optional)
Program module that contains the procedure that will be called in case of an error.
When you use the type ManagedForm, the module method of the specified managed form will be called.
When you use the type CommandInterfaceCommand, the module method of the command interface command will be called.
When you use the type CommonModule, the method of the shared non-global module will be called.
Description: