| 
       Command for preparing for saving images in fast mode. 
      Syntax: 
      
        
		InitSaveImage;<maxcount=n>;<path=imagepath><maxcount=n>;<path=imagepath> 
       
      
        
          | Parameter | 
          
			 Value  | 
          Description | 
         
        
          | maxcount | 
          1..n | 
          controls maximum number if imagesets on given directory | 
         
        
          | path | 
          string | 
          image by name is an alternative to imageNo - avoids 
			dependence to index in the image list | 
         
         
      Example 1: prepare for fast save 
		
			in action 'BeforeStart': 
			command: InitSaveImage;maxcount=1000;path=images 
			adjusts fileset count to 1000 and finds sequencenumber of next 
			file in following SaveImage command 
			in action 'AfterInspect' (or 'AfterGrab' when saving in 
			own thread): 
			command: SaveImage;path=images 
		 
     |