New to Telerik UI for WinFormsStart a free 30-day trial

Defines the contract for RadMarkupEditor implementations.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.RadMarkupEditor.dll

Syntax:

C#
public interface IRadMarkupEditor

Derived Classes: RadMarkupEditor

Properties

DesignViewDomDocument

IHTMLDocument2

Gets the DOM document associated with the design view.

C#
IHTMLDocument2 DesignViewDomDocument { get; }

Gets or sets the HTML markup value of the editor.

C#
string Value { get; set; }

Methods

Changes the editor mode internally between Design and HTML view.

C#
void ChangeModeInternal(EditorMode value)
Parameters:valueEditorMode

The editor mode to switch to.

Inserts HTML content at the current cursor position.

C#
void InsertHtml(string html)
Parameters:htmlstring

The HTML content to insert.

Invokes the UI update operation to refresh the editor's state.

C#
void InvokeUpdateUI()