JavaTextArea¶
Java Text Area.
UI element class: java.awt.TextArea
Extends JavaObject
Extends SeSSimulatedObject
Behavior Pattern: JavaObjectTextFieldBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Text | Text of the object, 'false' if text can not be read. | GetText | SetText |
Value | Value of the object. | GetValue | SetValue |
Action Summary¶
Action | Description |
---|---|
DoSetText | Sets text value of this object. |
Property Detail¶
Text¶
Text of the object, 'false' if text can not be read.
Type: string
Accessors: GetText, SetText
value = SeS('SomeJavaTextArea').GetText()
SeS('SomeJavaTextArea').SetText(value)
Value¶
Value of the object.
Type: text
Accessors: GetValue, SetValue
value = SeS('SomeJavaTextArea').GetValue()
SeS('SomeJavaTextArea').SetValue(value)
Action Detail¶
DoSetText¶
Sets text value of this object.
SeS('SomeJavaTextArea').DoSetText(val)
Parameters:
Name | Type | Description |
---|---|---|
val | string | Text value. |
Returns:
boolean: 'true' if success, 'false' otherwise.