WorkbookEvents_AfterXmlExportEventHandler Delegate 

A Delegate type used to add an event handler for the AfterXmlExport event. The AfterXmlExport event occurs after Microsoft Excel saves or exports data from the specified workbook to an XML data file.

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

Usage

Sub Sub1(Map As XmlMap, _
    Url As String, _
    Result As XlXmlExportResult)
End Sub
Dim workbookEvents_AfterXmlExportEventHandler1 As New WorkbookEvents_AfterXmlExportEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub WorkbookEvents_AfterXmlExportEventHandler( _
    <InAttribute()> ByVal Map As XmlMap, _
    <InAttribute()> ByVal Url As String, _
    <InAttribute()> ByVal Result As XlXmlExportResult _
)
public delegate void WorkbookEvents_AfterXmlExportEventHandler(
    [In] XmlMap Map, 
    [In] string Url, 
    [In] XlXmlExportResult Result
);
public delegate Void WorkbookEvents_AfterXmlExportEventHandler(
    XmlMap^ Map, 
    String^ Url, 
    XlXmlExportResult^ Result
);
public delegate void WorkbookEvents_AfterXmlExportEventHandler(
    /*in*/XmlMap Map, 
    /*in*/System.String Url, 
    /*in*/XlXmlExportResult Result
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • Map
    Required XmlMap object. The schema map that was used to save or export data.
  • Url
    Required String. The location of the XML file that was exported.
  • Result
    Required XlXmlExportResult. Indicates the results of the save or export 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