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 > UiReport > UiReport.OnAfterRefreshEaxGrid

UiReport.OnAfterRefreshEaxGrid

Syntax

UiReport1OnAfterRefreshEaxGrid(Sender: Object; Args: IUiPrxEaxGridEventArgs);

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 OnAfterRefreshEaxGrid event occurs after refreshing analytical data area.

Comments

Before refreshing analytical data area, the UiReport.OnBeforeRefreshEaxGrid event occurs.

Example

Executing the example requires a form that contains the UiReport component with the UiReport1 identifier and a visualizer, which data source is the UiReport1 component. Specify a regular report, which active sheet contains analytical data area, as a data source for the UiReport1 component.

The example is a handler of the OnAfterRefreshEaxGrid event for the UiReport1 component.

Sub UiReport1OnAfterRefreshEaxGrid(Sender: Object; Args: IUiPrxEaxGridEventArgs);
Begin
    Debug.WriteLine("Analytical data area is refreshed:");
    Debug.WriteLine("with columns: " + Args.EaxGrid.ColumnName(0));
    Debug.WriteLine("and rows: " + Args.EaxGrid.RowName(0));
End Sub UiReport1OnAfterRefreshEaxGrid;

After updating the analytical data area an information message is displayed.

See also:

UiReport