AppEvents_WorkbookBeforeXmlImportEventHandler Delegate
A Delegate type used to add an event handler for the WorkbookBeforeXmlImport event. The WorkbookBeforeXmlImport event occurs before an existing XML data connection is refreshed, or new XML data is imported into any open 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 AppEvents_WorkbookBeforeXmlImportEventHandler ( _
Wb As Workbook, _
Map As XmlMap, _
Url As String, _
IsRefresh As Boolean, _
<OutAttribute> ByRef Cancel As Boolean _
)
'Usage
Dim instance As New AppEvents_WorkbookBeforeXmlImportEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void AppEvents_WorkbookBeforeXmlImportEventHandler(
Workbook Wb,
XmlMap Map,
string Url,
bool IsRefresh,
out bool Cancel
)
Parameters
Wb
Type: Microsoft.Office.Interop.Excel.WorkbookRequired Workbook. The target workbook.
Map
Type: Microsoft.Office.Interop.Excel.XmlMapRequired XmlMap. The XML map that will be used to import data.
Url
Type: System.StringRequired String. The location of the XML file to be imported.
IsRefresh
Type: System.BooleanRequired Boolean. True if the event was triggered by refreshing an existing connection to XML data; False if a new mapping will be created.
Cancel
Type: System.BooleanRequired Boolean. Set to True to cancel the import or refresh operation.