Sub EventOnChangeControlValue(Args: IUiPrxControlEventArgs);
Begin
// set of operators
End Sub EventOnChangeControlValue;
Args - the parameter, which enables the user to work with event parameters.
The EventOnChangeControlValue method implements the event that occurs when value of a control of the regular report 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: