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