Project

General

Profile

$editbox » History » Revision 7

Revision 6 (Per Amundsen, 04/29/2018 01:01 AM) → Revision 7/11 (Per Amundsen, 12/13/2019 06:32 PM)

_Added in 1.9.0_ 

 *$editbox(window,[N])* 

 Returns the text in the [[Editbox Control|Editbox]] of the specified window. 

 *Parameters* 

 window - The window associated with the [[Editbox Control|Editbox]] to use. 
 [N] - *TODO* TODO (optional) 

 *Properties* 

 .selstart - Returns the position of the first selected character. 
 .selend - - Returns the position of the last selected character. 
 .color - Gets the current [[Editbox Control|Editbox]] text color in [[$rgb]] format. *(AdiIRC only)* (AdiIRC only) 
 .backcolor - Gets the current [[Editbox Control|Editbox]] background color in [[$rgb]] format. *(AdiIRC only)* (AdiIRC only) 
 .rgbcolor - Gets the current [[Editbox Control|Editbox]] text color in rrr,ggg,bbb format. *(AdiIRC only)* (AdiIRC only) 
 .rgbbackcolor - Gets the current [[Editbox Control|Editbox]] background color in rrr,ggg,bbb format. *(AdiIRC only)* (AdiIRC only) 
 .spellcheckword - Gets the current word at the cursor position formatted for spellchecking. *(AdiIRC only)* (AdiIRC only) 
 .currline - Returns the line where the cursor is in a multiline [[Editbox Control|Editbox]]. *(AdiIRC only)* (AdiIRC only) 
 .lines - Returns the number of lines in a multiline [[Editbox Control|Editbox]]. *(AdiIRC only)* (AdiIRC only) 

 *Example* 

 <pre> 
 ; Open a custom window. 
 /window -e @Example 

 ; Add 'Hello World' to the Editbox. 
 /editbox @Example Hello World 

 ; Print the content of the Editbox. 
 //echo -ag Text is $editbox(@Example) selstart is $editbox(@Example).selstart selend is $editbox(@Example).selend 
 </pre>