IUiPrxControlEventArgs.Control

Syntax

Control: IPrxControl;

Description

The Control property returns the control of the regular report, which value has been changed.

Example

Consider the event that occurs when a value of a control is changed.

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:

IUiPrxControlEventArgs