XmlMaps Collection [Excel 2003 VBA Language Reference]

Workbook
XmlMaps
XmlMap
Multiple objects

Note  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.

Represents the collection of XmlMap objects that have been added to a workbook.

Using the XmlMaps Collection

Use the Add method to add an XML map to a workbook.

Sub AddXmlMap()
    Dim strSchemaLocation As String
    
    strSchemaLocation = "http://example.microsoft.com/schemas/CustomerData.xsd"
    ActiveWorkbook.XmlMaps.Add strSchemaLocation, "Root"
End Sub

Properties | Application Property | Count Property | Creator Property | Item Property | Parent Property

Methods | Add Method

Parent Objects | Workbook

Child Objects | XmlDataBinding | XmlNamespace | XmlSchemas

See Also | XmlDataBinding Object | XmlMap Object | XmlNamespace Object | XmlNamespaces Collection | XmlSchema Object | XmlSchemas Collection | XPath Object