AppEvents_WorkbookBeforeXmlExportEventHandler Delegate

A Delegate type used to add an event handler for the WorkbookBeforeXmlExport event. The WorkbookBeforeXmlExport event occurs before Microsoft Excel saves or exports data from any open 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 AppEvents_WorkbookBeforeXmlExportEventHandler ( _
    Wb As Workbook, _
    Map As XmlMap, _
    Url As String, _
    <OutAttribute> ByRef Cancel As Boolean _
)
'Usage
Dim instance As New AppEvents_WorkbookBeforeXmlExportEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void AppEvents_WorkbookBeforeXmlExportEventHandler(
    Workbook Wb,
    XmlMap Map,
    string Url,
    out bool Cancel
)

Parameters

  • Url
    Type: System.String

    Required String. The location of the XML file to be exported.

  • Cancel
    Type: System.Boolean

    Required Boolean. Set to True to cancel the save or export operation.

See Also

Reference

Microsoft.Office.Interop.Excel Namespace