VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Filters Namespace / ConvolutionCommand Class / Divisor Property
Syntax Exceptions Remarks Requirements SeeAlso
In This Topic
    Divisor Property (ConvolutionCommand)
    In This Topic
    Gets or sets a result divisor.
    Syntax
    'Declaration
    
    <DescriptionAttribute("A result divisor.")>
    <DefaultValueAttribute(1)>
    Public Property Divisor As Long
    
    
    [Description("A result divisor.")]
    [DefaultValue(1)]
    public long Divisor { get; set; }
    
    
    [Description("A result divisor.")]
    [DefaultValue(1)]
    public: __property long get_Divisor();
    public: __property void set_Divisor(
    long value
    );
    [Description("A result divisor.")]
    [DefaultValue(1)]
    public:
    property long Divisor { long get(); void set(long value); }

    Property Value

    Default value is 1.
    Exceptions
    ExceptionDescription
    Thrown if divisor is zero.
    Remarks

    The result of previous calculation will be divided by this divisor.

    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