$editbox » History » Version 1
Per Amundsen, 08/12/2015 08:32 AM
| 1 | 1 | Per Amundsen | _Added in 1.9.0_ |
|---|---|---|---|
| 2 | |||
| 3 | *$editbox(window,[N])* |
||
| 4 | |||
| 5 | Returns the text in the Editbox of the specified window. |
||
| 6 | |||
| 7 | *Parameters* |
||
| 8 | |||
| 9 | window - The window associated with the Editbox to use. |
||
| 10 | [N] - TODO (optional) |
||
| 11 | |||
| 12 | *Properties* |
||
| 13 | |||
| 14 | .selstart - Returns the position of the first selected character. |
||
| 15 | .selend - - Returns the position of the last selected character. |
||
| 16 | |||
| 17 | *Example* |
||
| 18 | |||
| 19 | <pre> |
||
| 20 | ; Open a custom window. |
||
| 21 | /window -e @Example |
||
| 22 | |||
| 23 | ; Add 'Hello World' to the Editbox. |
||
| 24 | /editbox @Example Hello World |
||
| 25 | |||
| 26 | ; Print the content of the Editbox. |
||
| 27 | //echo -ag Text is $editbox(@Example) selstart is $editbox(@Example).selstart selend is $editbox(@Example).selend |
||
| 28 | </pre> |