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)

Syntax

'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub WorkbookEvents_AfterXmlImportEventHandler ( _
    Map As XmlMap, _
    IsRefresh As Boolean, _
    Result As XlXmlImportResult _
)
'Usage
Dim instance As New WorkbookEvents_AfterXmlImportEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void WorkbookEvents_AfterXmlImportEventHandler(
    XmlMap Map,
    bool IsRefresh,
    XlXmlImportResult Result
)

Parameters

  • IsRefresh
    Type: System.Boolean

    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.

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.

See Also

Reference

Microsoft.Office.Interop.Excel Namespace