DashboardEvents.OnBeforeOpenDashboard

Syntax

OnBeforeOpenDashboard(Dashboard: IDashboard);

Parameters

Dashboard. The information panel, for which the event is generated.

Description

The OnBeforeOpenDashboard method implements the event that occurs on opening information panel.

Example

The specified class can be used for handling information panel events.

Add links to the Dashboard system assembly.

Class CUserEvents: DashboardEvents
    Sub OnBeforeOpenDashboard(Dashboard: IDashboard);
    Begin
        //...
        // Handle opening information panel
        //...
    End Sub OnBeforeOpenDashboard;

    Sub OnBeforeRefreshVisualizer(EaxObject: IDashboardVisualizer; Var Cancel: Boolean);
    Begin
        //...
        // Handle start of visualizer refresh
        //...
    End Sub OnBeforeRefreshVisualizer;

    Sub OnAfterRefreshVisualizer(Visualizer: IDashboardVisualizer);
    Begin
        //...
        // Handle end of visualizer refresh
        //...
    End Sub OnAfterRefreshVisualizer;
End Class CUserEvents;

See also:

DashboardEvents