Project

General

Profile

$editboxhistory » History » Revision 2

Revision 1 (Per Amundsen, 03/17/2016 06:31 PM) → Revision 2/6 (Per Amundsen, 12/06/2017 02:00 AM)

_Added in 2.3_ 

 *$editboxhistory(window,N)* 

 Returns the Nth Editbox history item for the window. 

 


 *Parameters* 

 window - The window to retrieve Editbox history from. 
 N - If N = 0, number of history items, otherwise the Nth item. 

 *Properties* 

 .current - Returns the current Editbox history position. 

 *Example* 

 <pre> 
 ; Print number of Editbox history items for the active window. 
 //echo -ag $editboxhistory($active, 0) 

 ; Print the first Editbox history item for the active window. 
 //echo -ag $editboxhistory($active, 1) 
 </pre>