IPrxReportUserEvents.EventOnChangeControlValue

Syntax

Sub EventOnChangeControlValue(Args: IUiPrxControlEventArgs);

Begin

// set of operators

End Sub EventOnChangeControlValue;

Parameters

Args - the parameter, which enables the user to work with event parameters.

Description

The EventOnChangeControlValue method implements the event that occurs when value of a control of the regular report is changed.

Example

Sub EventOnChangeControlValue(Args: IUiPrxControlEventArgs);

Begin

WinApplication.InformationBox("Control value changed " + Args.Control.Id);

End Sub EventOnChangeControlValue;

When the event occurs, an information message containing identifier of the changed control is displayed.

See also:

IPrxReportUserEvents