Interface IDocumentType
Inherited Members
Namespace: Telerik.Windows.Documents.FormatProviders.Html.Parsing.Dom
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public interface IDocumentType : INode
Properties
Entities
InternalSubset
The internal subset as a string.The actual content returned depends on how much information is available to the implementation. This may vary depending on various parameters, including the XML processor used to build the document.
Declaration
string InternalSubset { get; }
Property Value
System.
|
Name
The name of DTD; i.e., the name immediately following the
DOCTYPE
keyword.
Declaration
string Name { get; }
Property Value
System.
|
Notations
PublicId
The public identifier of the external subset.
Declaration
string PublicId { get; }
Property Value
System.
|
SystemId
The system identifier of the external subset.
Declaration
string SystemId { get; }
Property Value
System.
|