TXMLDocument/es

From Lazarus wiki
Revision as of 14:40, 23 September 2016 by Jma sp (talk | contribs) (Created page with "La clase TXMLDocument alberga datos XML , e.g. desde un fichero. Es hijo de TDOMDocument. == Declaración == Esto está extraido desde dom.pas <source> TXMLDocument = c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

La clase TXMLDocument alberga datos XML , e.g. desde un fichero. Es hijo de TDOMDocument.

Declaración

Esto está extraido desde dom.pas

TXMLDocument = class(TDOMDocument)
  private
    FXMLVersion: DOMString;
    procedure SetXMLVersion(const aValue: DOMString);
  public
    // These fields are extensions to the DOM interface:
    Encoding, StylesheetType, StylesheetHRef: DOMString;

    function CreateCDATASection(const data: DOMString): TDOMCDATASection; override;
    function CreateProcessingInstruction(const target, data: DOMString): TDOMProcessingInstruction; override;
    function CreateEntityReference(const name: DOMString): TDOMEntityReference; override;
    property XMLVersion: DOMString read FXMLVersion write SetXMLVersion;
  end;

Volver a fcl-xml resumen.

Ver también

xmlread, xmlwrite, TDOMDocument