Interface IDomImplementation
Namespace: Telerik.Windows.Documents.FormatProviders.Html.Parsing.Dom
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public interface IDomImplementation
Methods
CreateDocument(String, String, IDocumentType)
Creates an XML
Document
object of the specified type with
its document element. HTML-only DOM implementations do not need to
implement this method.
Declaration
IDocument CreateDocument(string namespaceUri, string qualifiedName, IDocumentType documentType)
Parameters
System.String
namespaceUri
|
System.String
qualifiedName
|
IDocumentType
documentType
|
Returns
IDocument
A new object.
|
Exceptions
DomException
INVALID_CHARACTER_ERR: Raised if the specified qualified name
contains an illegal character.
is
malformed, if the has a prefix and the
is , or if the
has a prefix that is "xml" and the
is different from "
http://www.w3.org/XML/1998/namespace" .
has already
been used with a different document or was created from a different
implementation.
|
CreateDocumentType(String, String, String)
Declaration
IDocumentType CreateDocumentType(string qualifiedName, string publicId, string systemId)
Parameters
System.String
qualifiedName
|
System.String
publicId
|
System.String
systemId
|
Returns
IDocumentType
|
HasFeature(String, String)
Test if the DOM implementation implements a specific feature.
Declaration
bool HasFeature(string feature, string version)
Parameters
System.String
feature
|
System.String
version
|
Returns
System.Boolean
if the feature is implemented in the
|