AppEvents_WorkbookBeforeXmlImportEventHandler Delegate

Definition

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.

public delegate void AppEvents_WorkbookBeforeXmlImportEventHandler(Workbook ^ Wb, XmlMap ^ Map, System::String ^ Url, bool IsRefresh, [Runtime::InteropServices::Out] bool % Cancel);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void AppEvents_WorkbookBeforeXmlImportEventHandler(Workbook Wb, XmlMap Map, string Url, bool IsRefresh, out bool Cancel);
Public Delegate Sub AppEvents_WorkbookBeforeXmlImportEventHandler(Wb As Workbook, Map As XmlMap, Url As String, IsRefresh As Boolean, ByRef Cancel As Boolean)

Parameters

Wb
Workbook

Required Workbook. The target workbook.

Map
XmlMap

Required XmlMap. The XML map that will be used to import data.

Url
String

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

IsRefresh
Boolean

Required Boolean. True if the event was triggered by refreshing an existing connection to XML data; False if a new mapping will be created.

Cancel
Boolean

Required Boolean. Set to True to cancel the import or refresh operation.

Attributes

Applies to