doch noch ne Frage
TDOMElement(nDocSettings).SetAttribute('ss:ID', 'Default');
erstellt die Atttribute des Notes "Styles".
Folgendermassen hänge ich ein Note als Kind ein.
Delphi-Quellcode:
nDocSettings := doc.CreateElement('Styles');
nDocSettings.AppendChild(doc.CreateElement('Style'));
aber wie bekomme ich die Attribute des Notes "Style" erstellt?
erledigt, danke

so:
Delphi-Quellcode:
nDocSettings := doc.CreateElement('Styles');
nChild:= nDocSettings.AppendChild(doc.CreateElement('Style'));
TDOMElement(nChild).SetAttribute('ss:ID', 'Default');
hab nachgedacht