Show contents 

Report > Report Assembly Interfaces > IPrxReportUserEvents > IPrxReportUserEvents.EventOnChangeControlValue

IPrxReportUserEvents.EventOnChangeControlValue

Syntax

EventOnChangeControlValue(Args: IUiPrxControlEventArgs);

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 is 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