ShowIndicators Свойство (Device)
 
            
                В этом разделе
            
            Gets or sets a value indicating whether TWAIN device should show the progress indicator dialog when images are scanning.
            
            
Синтаксис
            
            
            
            
            'Declaration
Public Property ShowIndicators As Boolean
 
            
            public bool ShowIndicators { get; set; }
 
            
            public: __property bool get_ShowIndicators();
public: __property void set_ShowIndicators(
   bool 
);
 
            
            public:
property bool ShowIndicators {
   bool get();
   void set(bool );
}
 
             
	Property Value
True - TWAIN device should show the progress indicator dialog when images are scanning;
 false - TWAIN device should NOT show the progress indicator dialog when images are scanning.
 Default value is true.
         
Пример
This C#/VB.NET code shows how to disable the progress indicator dialog if UI is not used.
    
	
	    
	    
Public Sub ScanColorImage(device As Vintasoft.Twain.Device)
    device.ShowUI = False
    device.ShowIndicators = False
    device.DisableAfterAcquire = True
    device.Open()
    device.PixelType = Vintasoft.Twain.PixelType.RGB
    device.UnitOfMeasure = Vintasoft.Twain.UnitOfMeasure.Inches
    device.Resolution = New Vintasoft.Twain.Resolution(200.0F, 200.0F)
    device.ImageLayout.[Set](1.0F, 1.0F, 5.0F, 5.0F)
    device.Acquire()
End Sub
	     
	 
 
    
	
	    
	    
public void ScanColorImage(Vintasoft.Twain.Device device)
{
    device.ShowUI = false;
    device.ShowIndicators = false;
    device.DisableAfterAcquire = true;
    device.Open();
    device.PixelType = Vintasoft.Twain.PixelType.RGB;
    device.UnitOfMeasure = Vintasoft.Twain.UnitOfMeasure.Inches;
    device.Resolution = new Vintasoft.Twain.Resolution(200f, 200f);
    device.ImageLayout.Set(1f, 1f, 5f, 5f);
    device.Acquire();
}
	     
	 
 
 
Требования
Целевые платформы: .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5
 
Смотрите также