Table of Contents

Interface IEditFieldCommon

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

Namespace: HP.LFT.SDK.Web
Assembly: HP.LFT.SDK.dll
Syntax
public interface IEditFieldCommon : IEditBase, IEnabledProvider

Properties

DefaultValue

The default value in the edit field.

Declaration
string DefaultValue { get; }
Property Value
Type Description
string

MaxLength

The max number of characters that can be entered in the input field.

Declaration
int MaxLength { get; }
Property Value
Type Description
int

Pattern

The input pattern, for example, a phone number.

Declaration
string Pattern { get; }
Property Value
Type Description
string

RowsCount

The number of rows.

Declaration
uint RowsCount { get; }
Property Value
Type Description
uint
Remarks

Possible values: 0 for single line or the number of rows for multiple lines

Type

The type of object as defined in the HTML input tag.

Declaration
string Type { get; }
Property Value
Type Description
string

Extension Methods

TestObjectExtensions.WaitUntilEnabled<T>(T)
TestObjectExtensions.WaitUntilEnabled<T>(T, int)