XMLDTD Object
See Also Example Properties Methods Events
Models an XML Document Type Definition.
Class Diagram

Remarks
The XMLDTD object is very simple and at present only supports simple "<!Element ... >" tags.
Elements are stored in the Elements property.
The ParseFile, ParseString and ParseWeb methods take a DTD and parse it into the DTD object,
extracting the element definitions and building the Elements property.
The GetElement method returns the details of an element from the DTD.
The "<!Element ... >" tags supported are simple ones without complex nested rules. For example :
<!ELEMENT element1 (subelement1 | subelement2* | subelement3 | subelement4)*>
is supported, however, something like the following example is not :
<!ELEMENT element1 ((subelement1* | subelement2), subelement3)*>
|