iOSEditBox¶
iOS EditBox.
Extends iOSObject
Behavior Pattern: iOSObjectTextFieldBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Text | Text of the object, 'false' if text can not be read. | GetText | SetText |
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('SomeiOSEditBox').GetText()
SeS('SomeiOSEditBox').SetText(value)
Action Detail¶
DoSetText¶
Sets text value of this object.
SeS('SomeiOSEditBox').DoSetText(value)
Parameters:
Name | Type | Description |
---|---|---|
value | string | Text value. |
Returns:
boolean: 'true' if success, 'false' otherwise.