Table of Contents

Class Field

Namespace
InSite.Domain.Banks
Assembly
Shift.Sdk.dll

A field is a reference to a specific question item from within a specific form (in a specific section).

public class Field
Inheritance
Field
Inherited Members
Extension Methods

Constructors

Field()

public Field()

Properties

FormSequence

The ordinal position of this field in the form that contains it.

public int FormSequence { get; }

Property Value

int

Identifier

Uniquely identifies the field.

public Guid Identifier { get; set; }

Property Value

Guid

Letter

Returns an alphabetic equivalent for the integer sequence (e.g. A = 1, B = 2, C = 3).

public string Letter { get; }

Property Value

string

Question

The 'hydrated' question object. This is NOT serialized because it already exists as an object in the bank.

public Question Question { get; set; }

Property Value

Question

QuestionIdentifier

Uniquely identifies the question being referenced.

public Guid QuestionIdentifier { get; set; }

Property Value

Guid

Section

The section that contains this field.

public Section Section { get; set; }

Property Value

Section

Sequence

The ordinal position of this field in the section that contains it.

public int Sequence { get; }

Property Value

int

Methods

Clone()

public Field Clone()

Returns

Field