Table of Contents

Class EditorContext

Namespace
Dynamicweb.Content.Items.Editors
Assembly
Dynamicweb.dll

Represents an editor context.

public class EditorContext
Inheritance
EditorContext
Inherited Members

Constructors

EditorContext()

Initializes a new instance of an object.

public EditorContext()

Properties

AreaId

Gets or sets current area id.

public int AreaId { get; set; }

Property Value

int

NestingLevel

Gets or sets current nesting level.

public int NestingLevel { get; set; }

Property Value

int

Output

Gets or sets the UI output stream.

public TextWriter Output { get; set; }

Property Value

TextWriter

TagNamespace

Gets or sets current TagNamespace

public string TagNamespace { get; set; }

Property Value

string

TagPrefix

Gets or sets current TagName

public string TagPrefix { get; set; }

Property Value

string

Template

Gets or sets current tamplate

public Template Template { get; set; }

Property Value

Template

Value

Gets or sets the value that is being edited.

public object Value { get; set; }

Property Value

object
To top