[Overview][Constants][Types][Classes][Procedures and functions][Index] |
The internal subset for the Document Type declaration.
Source position: laz2_dom.pas line 724
public property TDOMDocumentType.InternalSubset : DOMString |
InternalSubset is a read-only DOMString property which contains the portion of the document type declaration declared inline instead of externally. For example:
<!DOCTYPE person SYSTEM "name.dtd" [ <!ELEMENT profession (#PCDATA)> <!ELEMENT person (name, profession*)> ]>
This document type declaration declares the profession and person elements as an internal subset, but relies on the file name.dtd to contain the declaration of the name element. The part of the DTD between the '[' and ']' brackets is the internal subset.
Version 4.0 | Generated 2025-05-03 | Home |