IEditFieldCommon Interface
Properties and methods for Web edit field types (edit, number, and range).

C# Syntax

public interface IEditFieldCommon : IEditBase  
Public Properties
 NameDescription
PropertyDefaultValueThe default value in the edit field.  
PropertyIsReadOnlyIndicates whether this field is read-only. (Inherited from HP.LFT.SDK.Web.IEditBase)
PropertyIsRequiredIndicates whether this field is mandatory. (Inherited from HP.LFT.SDK.Web.IEditBase)
PropertyMaxCharsInLineThe maximum number of characters allowed per line in this edit field. (Inherited from HP.LFT.SDK.Web.IEditBase)
PropertyMaxLengthThe max number of characters that can be entered in the input field.  
PropertyPatternThe input pattern, for example, a phone number.  
PropertyPlaceholderThe hint text that is displayed in the edit box until a value is entered into it. (Inherited from HP.LFT.SDK.Web.IEditBase)
PropertyRowsCountThe number of rows.  
PropertyTypeThe type of object as defined in the HTML input tag.  
PropertyValueThe current text in this field. (Inherited from HP.LFT.SDK.Web.IEditBase)
Top
Public Methods
 NameDescription
MethodSetValueSets the text inside the edit box. (Inherited from HP.LFT.SDK.Web.IEditBase)
Top