Specifies whether a complete HTML document is being edited.

Namespace: RTE
Assembly: RichTextEditor (in RichTextEditor.dll) Version: 8.0.0.0 (8.0.0.0)

Syntax

C#
public bool EditCompleteDocument { get; set; }
Visual Basic
Public Property EditCompleteDocument As Boolean
	Get
	Set
Visual C++
public:
property bool EditCompleteDocument {
	bool get ();
	void set (bool value);
}

Remarks

If false, the editor will only process content inside the page body i.e. all content inside of the <body>...</body> tags of a page. If true, the editor will process content outside the page body and preserve header tags (e.g. <head>...</head>, <title>...</title>, etc.).

See Also