WorkbookEvents_AfterXmlImportEventHandler Delegate 

A Delegate type used to add an event handler for the AfterXmlImport event. The AfterXmlImport event occurs after an existing XML data connection is refreshed or after new XML data is imported into the specified Microsoft Excel workbook.

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

Usage

Sub Sub1(Map As XmlMap, _
    IsRefresh As Boolean, _
    Result As XlXmlImportResult)
End Sub
Dim workbookEvents_AfterXmlImportEventHandler1 As New WorkbookEvents_AfterXmlImportEventHandler(AddressOf Sub1)

Syntax

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

Parameters

  • Map
    Required XmlMap object. The XML map that will be used to import data.
  • IsRefresh
    Required Boolean. True if the event was triggered by refreshing an existing connection to XML data; False if the event was triggered by importing from a different data source.
  • Result
    Required XlXmlImportResult. Indicates the results of the refresh or import operation.

Remarks

XML features, except for saving files in the XML Spreadsheet format, are available only in Microsoft Office Professional Edition 2003 and Microsoft Office Excel 2003.

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