add Methode
add(url)
Fügen Sie eine XmlMap neben der URL/dem Pfad einer xml/xsd-Datei hinzu.
Kehrt zurück
XmlMap Objektindex.
def add(self, url):
...
Parameter | Typ | Beschreibung |
---|---|---|
url | str | URL/Pfad einer xml/xsd-Datei. |
Beispiel
Der folgende Code fügt zwei XmlMaps durch eine xsd-Datei und eine xml-Datei hinzu.
from aspose.cells import Workbook
wb = Workbook()
xmlMapCollection = wb.worksheets.xml_maps
# Add a XmlMap by a xsd file.
xmlMapCollection.add("schema.xsd")
# Add a XmlMap by a xml file.
xmlMapCollection.add("xml.xml")
wb.save("twoXmlMaps.xlsx")
Siehe auch
- Modul aspose.cells
- Klasse XmlMap
- Klasse XmlMapCollection