Show contents 

Home > Foresight Analytics Platform > Web Application and Desktop Application > Application Development and Functionality Enhancement > Developing in Development Environment > Description of System Assemblies > Report > Report Assembly Classes > ReportBox > ReportBox.OnAfterDeleteRange

ReportBox.OnAfterDeleteRange

Syntax

OnAfterDeleteRange(Sender: Object; Args: IReportRangeDeleteEventArgs);

Parameters

Sender. Parameter that returns the component that has generated the event.

Args. The parameter that enables the user to determine event parameters..

Description

The OnAfterDeleteRange event occurs after removing ranges/rows/columns.

Comments

Before removing ranges/rows/columns the ReportBox.OnBeforeDeleteRange event occurs.

Example

Executing the example requires a form that contains the ReportBox component with the ReportBox1 identifier and the UiReport component with the UiReport1 identifier. Specify the UiReport1 component as a data source for the ReportBox1 component. In the OperationMode property of the UiReport1 component specify Edit.

Sub ReportBox1OnAfterDeleteRange(Sender: Object; Args: IReportRangeDeleteEventArgs);
Begin
    Debug.WriteLine("Range is removed: " + Args.Range.Address +
        " by means of: " + Args.ShiftDirection.ToString + " from sheet: " + Args.Sheet.Name);
End Sub ReportBox1OnAfterDeleteRange;

After executing the example on each adding range/rows/columns to table, the console window displays a message with the information:

See also:

ReportBox