Class EditFieldDescription
Description of a SAP GUI for Windows edit field.
public class EditFieldDescription : ElementDescription, ICloneable, IDescription
- Inheritance
-
EditFieldDescription
- Implements
- Inherited Members
Constructors
EditFieldDescription()
public EditFieldDescription()
Properties
AttachedText
The static text attached to the edit field.
public StringProperty AttachedText { get; set; }
Property Value
IconName
The name of the icon used in the edit box.
public StringProperty IconName { get; set; }
Property Value
IsEnabled
Indicates whether the edit field can accept user input.
public bool? IsEnabled { get; set; }
Property Value
- bool?
IsHighlighted
Indicates whether the edit field is highlighted.
public bool? IsHighlighted { get; set; }
Property Value
- bool?
IsNumerical
Indicates whether the edit box is a numeric field.
public bool? IsNumerical { get; set; }
Property Value
- bool?
IsRequired
Indicates whether the edit box is required.
public bool? IsRequired { get; set; }
Property Value
- bool?
MaxLength
The maximum number of characters that can be entered in the edit box.
public uint? MaxLength { get; set; }
Property Value
- uint?
Text
The text in the edit field.
public StringProperty Text { get; set; }