VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Document Namespace / HalftoneRemovalCommand Class / AutoThreshold Property
Syntax Requirements SeeAlso
In This Topic
    AutoThreshold Property (HalftoneRemovalCommand)
    In This Topic
    Gets or sets a value indicating whether the black and white pixels removal thresholds are calculated automatically.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(True)>
    <DescriptionAttribute("A value indicating whether the black and white pixels removal thresholds are calculated automatically.")>
    Public Property AutoThreshold As Boolean
    
    
    [DefaultValue(True)]
    [Description("A value indicating whether the black and white pixels removal thresholds are calculated automatically.")]
    public bool AutoThreshold { get; set; }
    
    
    [DefaultValue(True)]
    [Description("A value indicating whether the black and white pixels removal thresholds are calculated automatically.")]
    public: __property bool get_AutoThreshold();
    public: __property void set_AutoThreshold(
    bool value
    );
    [DefaultValue(True)]
    [Description("A value indicating whether the black and white pixels removal thresholds are calculated automatically.")]
    public:
    property bool AutoThreshold { bool get(); void set(bool value); }

    Property Value

    true - thresholds are calculated automatically; false - thresholds are used from BlackPixelRemovalThreshold and WhitePixelRemovalThreshold properties.
    Default value is true.
    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