Table of Contents

Class EditFieldDescription

Description of a SAP GUI for Windows edit field.

Inheritance
EditFieldDescription
Namespace: HP.LFT.SDK.SAP.GUI
Assembly: HP.LFT.SDK.dll
Syntax
public class EditFieldDescription : ElementDescription, ICloneable, IDescription

Constructors

EditFieldDescription()

Declaration
public EditFieldDescription()

Properties

AttachedText

The static text attached to the edit field.

Declaration
public StringProperty AttachedText { get; set; }
Property Value
Type Description
StringProperty

IconName

The name of the icon used in the edit box.

Declaration
public StringProperty IconName { get; set; }
Property Value
Type Description
StringProperty

IsEnabled

Indicates whether the edit field can accept user input.

Declaration
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

IsHighlighted

Indicates whether the edit field is highlighted.

Declaration
public bool? IsHighlighted { get; set; }
Property Value
Type Description
bool?

IsNumerical

Indicates whether the edit box is a numeric field.

Declaration
public bool? IsNumerical { get; set; }
Property Value
Type Description
bool?

IsRequired

Indicates whether the edit box is required.

Declaration
public bool? IsRequired { get; set; }
Property Value
Type Description
bool?

MaxLength

The maximum number of characters that can be entered in the edit box.

Declaration
public uint? MaxLength { get; set; }
Property Value
Type Description
uint?

Text

The text in the edit field.

Declaration
public StringProperty Text { get; set; }
Property Value
Type Description
StringProperty

Implements

ICloneable
IDescription