VintaSoft Twain .NET SDK 14.1: Руководство для .NET разработчика
Vintasoft.WpfTwain Namespace / KodakDeviceProfileCollection Class
Члены типа Объект Синтаксис Example Иерархия Требования Смотрите также
В этом разделе
    Класс KodakDeviceProfileCollection
    В этом разделе
    Набор профилей устройств Kodak.
    Объектная модель
    Device KodakDeviceProfile KodakDeviceProfileCollection
    Синтаксис
    'Declaration
    
    <DefaultMemberAttribute("Item")>
    Public Class KodakDeviceProfileCollection
    
    
    [DefaultMember("Item")]
    public class KodakDeviceProfileCollection
    
    
    [DefaultMember("Item")]
    public __gc class KodakDeviceProfileCollection
    
    
    [DefaultMember("Item")]
    public ref class KodakDeviceProfileCollection
    
    
    Пример

    Вот C#/VB.NET код, который демонстрирует, как распечатать имена всех профилей устройств Kodak.

    
    ''' <summary>
    ''' Prints names of Kodak device profiles.
    ''' </summary>
    ''' <param name="device">The device.</param>
    Public Shared Sub ShowKodakDeviceProfiles(device As Vintasoft.Twain.Device)
            ' create profile collection for Kodak device
            Dim profiles As New Vintasoft.Twain.KodakDeviceProfileCollection(device)
    
            ' print the device name
            System.Console.WriteLine("'{0}' device has {1} profiles:", device.Info.ProductName, profiles.Count)
    
            ' for each profile
            For i As Integer = 0 To profiles.Count - 1
                    ' print the profile English name
                    System.Console.WriteLine("- Profile: {0}, Name: {1}", i, profiles(i).EnglishName)
            Next
    End Sub
    
    
    
    /// <summary>
    /// Prints names of Kodak device profiles.
    /// </summary>
    /// <param name="device">The device.</param>
    public static void ShowKodakDeviceProfiles(Vintasoft.Twain.Device device)
    {
        // create profile collection for Kodak device
        Vintasoft.Twain.KodakDeviceProfileCollection profiles = new Vintasoft.Twain.KodakDeviceProfileCollection(device);
    
        // print the device name
        System.Console.WriteLine("'{0}' device has {1} profiles:", device.Info.ProductName, profiles.Count);
    
        // for each profile
        for (int i = 0; i < profiles.Count; i++)
        {
            // print the profile English name
            System.Console.WriteLine("- Profile: {0}, Name: {1}", i, profiles[i].EnglishName);
        }
    }
    
    

    Иерархия наследования

    System.Object
       Vintasoft.WpfTwain.KodakDeviceProfileCollection

    Требования

    Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

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