LWTextComponent¶
Oracle Forms LWTextComponent.
UI element class: oracle.ewt.lwAWT.lwText.LWTextComponent
Extends OracleFormsObject
Extends SeSSimulatedObject
Behavior Pattern: OracleFormsTextFieldBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Text | Text of the object, 'false' if text can not be read. | GetText | SetText |
Value | Text of the object, 'false' if text can not be read. | 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('SomeLWTextComponent').GetText()
SeS('SomeLWTextComponent').SetText()
Value¶
Text of the object, 'false' if text can not be read.
Type: string
Accessors: GetValue, SetValue
value = SeS('SomeLWTextComponent').GetValue()
SeS('SomeLWTextComponent').SetValue()
Action Detail¶
DoSetText¶
Sets text value of this object.
SeS('SomeLWTextComponent').DoSetText(val, bvalidate)
Parameters:
Name | Type | Description |
---|---|---|
val | string | Text value. |
bvalidate | boolean | Force validation of entered value. |
Returns:
boolean: 'true' if success, 'false' otherwise.