Startseite > comp > gb.xml > xmlwriter > startelement 
 en fr es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Zurück  Weiter  Bearbeiten  Umbenennen  Rückgängig  Suchen  Verwaltung  
Dokumentation  
Achtung! Diese Seite wurde noch nicht übersetzt.  Siehe englische Version 
XmlWriter.StartElement (gb.xml)
SUB StartElement ( Name AS String [ , Attributes AS String[], Prefix AS String, URI AS String ] )

Starts a XML node, called TagName. If that node contains some attributes, you can place it in Attributes as a String array, each attribute must be a pair of strings, the first string is the attribute name, and the second one is the attribute value. Prefix is the namespace prefix, and URI the namespace URI of that node.

Beispiel

Dim MyXML As XmlWriter
...
MyXML.StartElement( "mynode",["one","two","three","four"])
...

XML File:
...
<mynode one="two" three="four">