Table of Contents

Class LinkEditorBase

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

Represents a link editor.

[AddInUseParameterOrdering(true)]
public abstract class LinkEditorBase : Editor
Inheritance
LinkEditorBase
Derived
Inherited Members

Constructors

LinkEditorBase()

Initializes a new instance of an object.

public LinkEditorBase()

Fields

_enableFileSelection

protected bool _enableFileSelection

Field Value

bool

_enablePageSelection

protected bool _enablePageSelection

Field Value

bool

_enableParagraphSelection

protected bool _enableParagraphSelection

Field Value

bool

Properties

DataType

Gets the data type for this editor.

public override Type DataType { get; }

Property Value

Type

EnableFileSelection

Gets or sets value indicating whether to enable file selection.

public bool EnableFileSelection { get; set; }

Property Value

bool

EnablePageSelection

Gets or sets value indicating whether to enable page selection.

[AddInLabel("Enable page selection")]
[AddInParameterOrder(10)]
[AddInParameter("EnablePageSelection")]
[AddInParameterEditor(typeof(YesNoParameterEditor), "inputClass=std editor-parameter")]
public bool EnablePageSelection { get; set; }

Property Value

bool

EnableParagraphSelection

Gets or sets value indicating whether to enable paragraph selection.

[AddInLabel("Enable paragraph selection")]
[AddInParameterOrder(20)]
[AddInParameter("EnableParagraphSelection")]
[AddInParameterEditor(typeof(YesNoParameterEditor), "inputClass=std editor-parameter")]
public bool EnableParagraphSelection { get; set; }

Property Value

bool

ItemsOnly

Gets or sets value indicating whether only item-based pages/paragraphs can be selected.

public bool ItemsOnly { get; set; }

Property Value

bool
To top