VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Filters Namespace / BlurCommand Class / WindowSize Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    WindowSize Property (BlurCommand)
    In This Topic
    Gets or sets the window size for the filter.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(5)>
    <DescriptionAttribute("The window size for the filter.
    Possible value is any odd value from 1 o 255.")>
    Public Property WindowSize As System.Int32
    
    
    [DefaultValue(5)]
    [Description("The window size for the filter.
    Possible value is any odd value from 1 o 255.")]
    public System.Int32 WindowSize { get; set; }
    
    
    [DefaultValue(5)]
    [Description("The window size for the filter.
    Possible value is any odd value from 1 o 255.")]
    public: __property System.Int32 get_WindowSize();
    public: __property void set_WindowSize(
    System.Int32 value
    );
    [DefaultValue(5)]
    [Description("The window size for the filter.
    Possible value is any odd value from 1 o 255.")]
    public:
    property System.Int32 WindowSize { System.Int32 get(); void set(System.Int32 value); }

    Property Value

    Possible value is any odd value from 1 to 255. Default value is 5.
    Exceptions
    ExceptionDescription
    Thrown if window size is negative or window size is an odd value.
    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