Class Field
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
Identifier
Uniquely identifies the field.
public Guid Identifier { get; set; }
Property Value
Letter
Returns an alphabetic equivalent for the integer sequence (e.g. A = 1, B = 2, C = 3).
public string Letter { get; }
Property Value
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
QuestionIdentifier
Uniquely identifies the question being referenced.
public Guid QuestionIdentifier { get; set; }
Property Value
Section
The section that contains this field.
public Section Section { get; set; }
Property Value
Sequence
The ordinal position of this field in the section that contains it.
public int Sequence { get; }
Property Value
Methods
Clone()
public Field Clone()