Table of Contents

Class EditFormField

Namespace
Dynamicweb.Content.Items.Editors
Assembly
Dynamicweb.dll
Represents an edit form field.
[Obsolete("Do not use")]
public class EditFormField
Inheritance
EditFormField
Inherited Members

Constructors

EditFormField()

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

EditFormField(string, object)

Initializes a new instance of an object.
public EditFormField(string name, object value)

Parameters

name string
Field name (label).
value object
Field value.

EditFormField(string, object, Editor)

Initializes a new instance of an object.
public EditFormField(string name, object value, Editor editor)

Parameters

name string
Field name (label).
value object
Field value.
editor Editor
Value editor.

Properties

Editor

Gets or sets the field value editor.
public Editor Editor { get; set; }

Property Value

Editor

Group

Gets or sets the name of the field group.
public string Group { get; set; }

Property Value

string

Id

Gets or sets the unique identifier of this field.
public string Id { get; set; }

Property Value

string

IsVisibilityRule

indicates if visibility rule based on field.
public bool IsVisibilityRule { get; set; }

Property Value

bool

Metadata

public ItemField Metadata { get; set; }

Property Value

ItemField

Name

Gets or sets the field name (label).
public string Name { get; set; }

Property Value

string

SortIndex

Gets or sets the sort index.
public int SortIndex { get; set; }

Property Value

int

Value

Gets or sets the field value.
public object Value { get; set; }

Property Value

object
To top