Table of Contents

Class Form

Namespace
Dynamicweb.Forms
Assembly
Dynamicweb.Forms.dll

Represents a form instance with fields, field options etc.

[Serializable]
[DataContract]
public class Form : DbObject
Inheritance
Form
Inherited Members
Extension Methods

Constructors

Form()

public Form()

Properties

ColumnShiftFormFieldID

Gets or sets the ID of the field that will shift to column 2 when rendering.

[DataMember]
public int ColumnShiftFormFieldID { get; set; }

Property Value

int

CreatedBy

Gets the created by.

public User CreatedBy { get; }

Property Value

User

CreatedByUserId

[DataMember]
public int CreatedByUserId { get; set; }

Property Value

int

CreatedDate

Gets or sets the created date.

[DataMember]
public DateTime CreatedDate { get; set; }

Property Value

DateTime

CssClass

Gets or sets the CSS class.

[DataMember]
public string CssClass { get; set; }

Property Value

string

DefaultTemplate

Gets or sets the default template.

[DataMember]
public string DefaultTemplate { get; set; }

Property Value

string

DisplayCount

Gets the form's shows amount.

[DataMember]
public int DisplayCount { get; }

Property Value

int

EmailFieldID

Gets or sets the email field identifier.

[DataMember]
public int EmailFieldID { get; set; }

Property Value

int

FieldSize

Gets or sets the size of the field.

[DataMember]
public int FieldSize { get; set; }

Property Value

int

LabelBold

Gets or sets a value indicating whether label should be bold.

[DataMember]
public bool LabelBold { get; set; }

Property Value

bool

LabelOverField

Gets or sets a value indicating whether label should be rendered over field.

[DataMember]
public bool LabelOverField { get; set; }

Property Value

bool

LabelRequired

Gets or sets the label required.

[DataMember]
public string LabelRequired { get; set; }

Property Value

string

MaxSubmits

Gets or sets the maximum submits.

[DataMember]
public int MaxSubmits { get; set; }

Property Value

int

Name

Gets or sets the name of the form.

[DataMember]
public string Name { get; set; }

Property Value

string

UniqueId

Gets or sets the form unique identifier.

[DataMember]
public Guid UniqueId { get; set; }

Property Value

Guid

UpdatedBy

Gets the updated by.

public User UpdatedBy { get; }

Property Value

User

UpdatedByUserId

[DataMember]
public int UpdatedByUserId { get; set; }

Property Value

int

UpdatedDate

Gets or sets the updated date.

[DataMember]
public DateTime UpdatedDate { get; set; }

Property Value

DateTime

See Also

To top