Table of Contents

Class LongTextEditor

Namespace
Dynamicweb.Content.Items.Editors
Assembly
Dynamicweb.dll
Represents a memo (long text) editor.
[Editor("Long text")]
public class LongTextEditor : StringEditor
Inheritance
LongTextEditor
Inherited Members

Constructors

LongTextEditor()

Initializes a new instance of an object.
public LongTextEditor()

Properties

Cols

[AddInParameter("Cols")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=std editor-parameter")]
public string Cols { get; set; }

Property Value

string

Mode

Gets the editor mode.
public override TextEditorMode Mode { get; }

Property Value

TextEditorMode

Rows

[AddInParameter("Rows")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=std editor-parameter")]
public string Rows { get; set; }

Property Value

string

Methods

BeginEdit(EditorContext)

Enables the editor to populate its UI to the client and initiate the editing process.
[Obsolete("Do not use")]
public override void BeginEdit(EditorContext context)

Parameters

context EditorContext
Editor context.

RenderValue(EditorRenderingContext)

Renders value.
public override void RenderValue(EditorRenderingContext context)

Parameters

context EditorRenderingContext
Editor rendering context.
To top