Create (xmldoc)
<source lang='delphi'>Constructor Create(aOwner:TComponent);</source>
Cette fonction crée une instance de document.
aOwner | Propriétaire du document. |
Exemple: <source lang='delphi'> procedure foo(const iFileName:string); var doc:TxmlDocument; begin
doc := TxmlDocument.Create(nil); doc.LoadFromFile(iFileName); if doc.Count<>0 then begin end;
end; </source>
Voir aussi:
{{#if:Documents XML (tech)|
{{#if:Documents XML (tech)|— Documents XML (tech) |}} — Développement DSM —
|
{{#if:|— [[{{{1}}}]] |}} — Développement DSM —
}}