VintaSoft Twain .NET SDK 15.1: Документация для Веб разработчика
Vintasoft.Shared Namespace / EnumGenerator type / create Property
Синтаксис Совместимость с браузерами Смотрите также
В этом разделе
    create Метод
    В этом разделе
    Creates an enumeration class.
    Синтаксис
    var instance = new Vintasoft.Shared.EnumGenerator();
    
    var value; // Type: object
    
    // Parameters
    var items; // Type: object[]
    var flagged; // Type: boolean
    
    value = instance.create(items, flagged);
    
    
    function create(
    items
    Array of objects "name-value" describing enumeration. Each object has following properties:
    • name (string): The name of enum element.
    • value (number): The value of enum element.
    : object[],
    flagged
    A value indicating whether enumeration supports bit operations.
    : boolean
    ) : object;

    Parameters

    items
    Array of objects "name-value" describing enumeration. Each object has following properties:
    • name (string): The name of enum element.
    • value (number): The value of enum element.
    flagged
    A value indicating whether enumeration supports bit operations.

    Return Value

    Enumeration class.
    Смотрите также