IPrxUserButtonActionForeMethod.ForeMethod

Syntax

ForeMethod: String;

Description

The ForeMethod property determines a Fore method that should trigger on handler startup.

Comments

Depending on the type of the handler to be set up, a procedure or function with a defined signature should be specified as a property value.

Public Sub <Procedure name>(<Report>: IPrxReport);
Public Function <Function name>(<Report>: IPrxReport): <value type>;

Function <Function name>(<Report>: IPrxReport; [Var messageType: Integer]): String;

The messageType optional parameter is used to determine a format of displayed message. If the parameter is not set, a confirmation dialog box is used. To hide the displayed message, set Return to empty value.

Available values of the messageType parameter:

Sub <Procedure name>(<Report>: IPrxReport);

Function <Function name>(<Report>: IPrxReport): Boolean;

The function result will be handled as follows:

Example

The property use is given in the example for the IPrxUserButtons.Add, IPrxUserButtons.AddByType methods.

See also:

IPrxUserButtonActionForeMethod