IDOMImplementationCreateDocument Method |
Creates a DOM Document object of the specified type with its document element.
Namespace: Aspose.Html.DomAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
SyntaxDocument CreateDocument(
string namespaceURI,
string qualifiedName,
DocumentType doctype
)
Function CreateDocument (
namespaceURI As String,
qualifiedName As String,
doctype As DocumentType
) As Document
Document^ CreateDocument(
String^ namespaceURI,
String^ qualifiedName,
DocumentType^ doctype
)
abstract CreateDocument :
namespaceURI : string *
qualifiedName : string *
doctype : DocumentType -> Document
Parameters
- namespaceURI
- Type: SystemString
The namespace URI. - qualifiedName
- Type: SystemString
Name of the qualified. - doctype
- Type: Aspose.Html.DomDocumentType
The doctype.
Return Value
Type:
DocumentReturns document.
See Also