Creates a new Document.

[VBScript]
Public Function CreateDocument( _
   ByVal namespaceURI As String, _
   ByVal qualifiedName As String, _
   ByVal doctype As DocumentType _
) As Document
[JScript]
public function CreateDocument(
   namespaceURI : String,
   qualifiedName : String,
   doctype : DocumentType
) : Document;

Parameters

namespaceURI
Reserved. Must be null.
qualifiedName
Reserved. Must be null.
doctype
The DocumentType of the document type or null.

Return Value

The new Document object.

See Also

Implementation Object | Implementation Members | DOM Namespace