Share via


WorkbookEvents_BeforeXmlExportEventHandler Delegate 

A Delegate type used to add an event handler for the BeforeXmlExport event. The BeforeXmlExport event occurs before 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, _
    Cancel As Boolean)
End Sub
Dim workbookEvents_BeforeXmlExportEventHandler1 As New WorkbookEvents_BeforeXmlExportEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub WorkbookEvents_BeforeXmlExportEventHandler( _
    <InAttribute()> ByVal Map As XmlMap, _
    <InAttribute()> ByVal Url As String, _
    <InAttribute(), OutAttribute()> ByRef Cancel As Boolean _
)
public delegate void WorkbookEvents_BeforeXmlExportEventHandler(
    [In] XmlMap Map, 
    [In] string Url, 
    [In, Out] ref bool Cancel
);
public delegate Void WorkbookEvents_BeforeXmlExportEventHandler(
    XmlMap^ Map, 
    String^ Url, 
    &Boolean Cancel
);
public delegate void WorkbookEvents_BeforeXmlExportEventHandler(
    /*in*/XmlMap Map, 
    /*in*/System.String Url, 
    /*in*/boolean Cancel
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • Map
    Required XmlMap. The XML map that will be used to save or export data.
  • Url
    Required String. The location where you want to export the resulting XML file.
  • Cancel
    Required Boolean. Set to True to cancel 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