Table of Contents

Class Option

Namespace
Dynamicweb.Forms
Assembly
Dynamicweb.Forms.dll

Represents a form option.

[Serializable]
[DataContract]
public class Option : DbObject
Inheritance
Option
Inherited Members

Constructors

Option()

public Option()

Properties

Active

Gets or sets a value indicating whether this Option is active.

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

Property Value

bool

DefaultSelected

Gets or sets a value indicating whether [default selected].

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

Property Value

bool

FieldID

Gets or sets the field identifier.

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

Property Value

int

Sort

Gets or sets the sort.

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

Property Value

int

Text

Gets or sets the text.

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

Property Value

string

UniqueId

Gets or sets the option unique identifier.

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

Property Value

Guid

Value

Gets or sets the value.

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

Property Value

string
To top