Document.CreateDocumentType
Contents
[
Hide
]Document.CreateDocumentType method
The method returns a DocumentType
object which can either be used with DOMImplementation.createDocument upon document creation or can be put into the document via methods like Node.insertBefore() or Node.replaceChild().
public DocumentType CreateDocumentType(String name, String publicId, String systemId,
String internalSubset)
Parameter | Type | Description |
---|---|---|
name | String | Is a DOMString containing the qualified name, like svg:svg. |
publicId | String | Is a DOMString containing the PUBLIC identifier. |
systemId | String | Is a DOMString containing the SYSTEM identifiers. |
internalSubset | String | The internal subset. |
Return Value
The DocumentType
.
Examples
var dt = document.CreateDocumentType("svg:svg", "-//W3C//DTD SVG 1.1//EN", "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd", "");
See Also
- class DocumentType
- class Document
- package com.aspose.html.Dom
- package Aspose.HTML