VintaSoft Twain .NET SDK 15.3: Руководство для .NET разработчика
Vintasoft.WinTwain Namespace / Device Class / UnitOfMeasure Property
Синтаксис Exceptions Ремарки Example Требования Смотрите также
В этом разделе
    UnitOfMeasure Свойство (Device)
    В этом разделе
    Gets or sets the unit of measure for current scan session.
    Синтаксис
    'Declaration
    
    Public Property UnitOfMeasure As UnitOfMeasure
    
    
    public UnitOfMeasure UnitOfMeasure { get; set; }
    
    
    public: __property UnitOfMeasure get_UnitOfMeasure();
    public: __property void set_UnitOfMeasure(
    UnitOfMeasure value
    );
    public:
    property UnitOfMeasure UnitOfMeasure { UnitOfMeasure get(); void set(UnitOfMeasure value); }
    Исключения
    ИсключениеОписание
    Thrown if device is in wrong state.
    Thrown if device does not support capability.
    Thrown if the .NET debugger is used and the function evaluation requires all threads to run.
    Ремарки

    Call this property only when device is opened (State == DeviceState.Opened).

    Supported pages sizes can be received by the GetSupportedUnitsOfMeasure method.

    This property has effect only if you do not use User Interface (ShowUI=False).

    Пример

    This C#/VB.NET code shows how to acquire part of color image with 200 dpi from the device.

    
    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

    Смотрите также