VintaSoft Twain .NET SDK 15.0: Documentation for .NET developer
Vintasoft.WpfTwain Namespace / DeviceManager Class / ApplicationProductName Property
Syntax Exceptions Remarks Requirements SeeAlso
In This Topic
    ApplicationProductName Property (DeviceManager)
    In This Topic
    Gets or sets the name of application, which uses the SDK.
    Syntax
    'Declaration
    
    <DescriptionAttribute("Name of the application, which uses the SDK.")>
    Public Property ApplicationProductName As String
    
    
    [Description("Name of the application, which uses the SDK.")]
    public string ApplicationProductName { get; set; }
    
    
    [Description("Name of the application, which uses the SDK.")]
    public: __property string* get_ApplicationProductName();
    public: __property void set_ApplicationProductName(
    string* value
    );
    [Description("Name of the application, which uses the SDK.")]
    public:
    property string^ ApplicationProductName { string^ get(); void set(string^ value); }

    Property Value

    The string value which specifies the application name. String must contain at least 8 symbols but not more than 31 symbol.
    Default value is "VintaSoft Twain".
    Exceptions
    ExceptionDescription
    Thrown if TWAIN device manager is disposed.
    Remarks

    This property can be used when you want to scan images without UI but you want to use progress indicator. For example, HP's scanners show the following message in the progress indicator: "Scanning to Vintasoft Twain...". Using this property you can change message in the progress indicator, for example, to the following: "Scanning to YourApplicationName...".

    This property should be used before the Open method.

    Requirements

    Target Platforms: .NET 8, .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also