Class EditFieldBaseDescription
The description of the base interface for Web edit fields, such as, edit, number, and file fields.
public abstract class EditFieldBaseDescription : FormFieldDescription, ICloneable, IDescription
- Inheritance
-
EditFieldBaseDescription
- Implements
- Derived
- Inherited Members
Constructors
EditFieldBaseDescription()
protected EditFieldBaseDescription()
Properties
IsEnabled
Indicates whether the field is enabled.
public bool? IsEnabled { get; set; }
Property Value
- bool?
IsReadOnly
Indicates whether the object is read-only. Null if indeterminate.
public bool? IsReadOnly { get; set; }
Property Value
- bool?
IsRequired
Indicates whether the field is mandatory. Null if indeterminate.
public bool? IsRequired { get; set; }
Property Value
- bool?
MaxCharsInLine
The maximum number of characters per line in an edit field.
public uint? MaxCharsInLine { get; set; }
Property Value
- uint?
Placeholder
The hint text that is displayed in the edit box until a value is entered into it.
public StringProperty Placeholder { get; set; }
Property Value
Value
The currently displayed text in the field.
public StringProperty Value { get; set; }