RefreshEvents_AfterRefreshEventHandler Delegate 

A Delegate type used to add an event handler for the AfterRefresh event. The AfterRefresh event occurs after a query is completed or canceled.

Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)

Usage

Sub Sub1(Success As Boolean)
End Sub
Dim refreshEvents_AfterRefreshEventHandler1 As New RefreshEvents_AfterRefreshEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub RefreshEvents_AfterRefreshEventHandler( _
    <InAttribute()> ByVal Success As Boolean _
)
public delegate void RefreshEvents_AfterRefreshEventHandler(
    [In] bool Success
);
public delegate Void RefreshEvents_AfterRefreshEventHandler(
    Boolean Success
);
public delegate void RefreshEvents_AfterRefreshEventHandler(
    /*in*/boolean Success
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • Success
    True if the query was completed successfully.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Excel Namespace