Interface IRadMarkupEditor
Defines the contract for RadMarkupEditor implementations.
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.RadMarkupEditor.dll
Syntax
public interface IRadMarkupEditor
Properties
DesignViewDomDocument
Gets the DOM document associated with the design view.
Declaration
IHTMLDocument2 DesignViewDomDocument { get; }
Property Value
mshtml.IHTMLDocument2
|
Value
Gets or sets the HTML markup value of the editor.
Declaration
string Value { get; set; }
Property Value
System.String
|
Methods
ChangeModeInternal(EditorMode)
Changes the editor mode internally between Design and HTML view.
Declaration
void ChangeModeInternal(EditorMode value)
Parameters
EditorMode
value
The editor mode to switch to. |
InsertHtml(String)
Inserts HTML content at the current cursor position.
Declaration
void InsertHtml(string html)
Parameters
System.String
html
The HTML content to insert. |
InvokeUpdateUI()
Invokes the UI update operation to refresh the editor's state.
Declaration
void InvokeUpdateUI()