====== Set_Bgnd_IX_Time function ====== ==== Description ==== Sets the number of seconds the engine waits before and between indexing. This function is used with [[set_idxsvr|Set_IDXSvr()]] to control dedicated indexing. ==== Syntax ==== **Set_Bgnd_IX_Time**(//Seconds//) ==== See Also ==== [[set_idxsvr|Set_IDXSvr()]] ==== Example ==== subroutine TurnOnIndexer(void) declare subroutine Set_Bgnd_IX_Time, Set_IDXSvr * update indexes every 10 seconds Set_Bgnd_IX_Time(10) * turn on dedicated indexing Set_IDXSvr(1) return