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)
Syntax
'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub WorkbookEvents_BeforeXmlExportEventHandler ( _
Map As XmlMap, _
Url As String, _
<OutAttribute> ByRef Cancel As Boolean _
)
'Usage
Dim instance As New WorkbookEvents_BeforeXmlExportEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void WorkbookEvents_BeforeXmlExportEventHandler(
XmlMap Map,
string Url,
out bool Cancel
)
Parameters
Map
Type: Microsoft.Office.Interop.Excel.XmlMapRequired XmlMap. The XML map that will be used to save or export data.
Url
Type: System.StringRequired String. The location where you want to export the resulting XML file.
Cancel
Type: System.BooleanRequired 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.