Share via


XmlMaps Object

Excel Developer Reference

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

Example

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

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

See Also