Table of Contents

Class FormFieldOptionViewModel

Namespace
Dynamicweb.Forms
Assembly
Dynamicweb.Forms.dll

Represents a view model for rendering options of list fields for a form.

public class FormFieldOptionViewModel
Inheritance
FormFieldOptionViewModel
Inherited Members

Properties

Active

Gets or sets a value indicating whether the option is active.

public bool Active { get; set; }

Property Value

bool

DefaultSelected

Gets or sets a value indicating whether the option is default selected.

public bool DefaultSelected { get; set; }

Property Value

bool

ID

Gets or sets the ID of the option.

public int ID { get; set; }

Property Value

int

Sort

Gets or sets the sort order of the option.

public int Sort { get; set; }

Property Value

int

Text

Gets or sets the text of the option.

public string? Text { get; set; }

Property Value

string

Value

Gets or sets the value of the option.

public string? Value { get; set; }

Property Value

string
To top