VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Fft.Filters Namespace / ImageSharpeningCommand Class / OverlayAlpha Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    OverlayAlpha Property (ImageSharpeningCommand)
    In This Topic
    Gets or sets the alpha (transparency) value that must be used when the image, which is received after the highpass filtering of source image, must be overlayed on the source image.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(1)>
    <DescriptionAttribute("The alpha (transparency) value that must be used when the image, which is received after the highpass filtering of source image, must be overlayed on the source image.")>
    Public Property OverlayAlpha As Single
    
    
    [DefaultValue(1)]
    [Description("The alpha (transparency) value that must be used when the image, which is received after the highpass filtering of source image, must be overlayed on the source image.")]
    public float OverlayAlpha { get; set; }
    
    
    [DefaultValue(1)]
    [Description("The alpha (transparency) value that must be used when the image, which is received after the highpass filtering of source image, must be overlayed on the source image.")]
    public: __property float get_OverlayAlpha();
    public: __property void set_OverlayAlpha(
    float value
    );
    [DefaultValue(1)]
    [Description("The alpha (transparency) value that must be used when the image, which is received after the highpass filtering of source image, must be overlayed on the source image.")]
    public:
    property float OverlayAlpha { float get(); void set(float value); }

    Property Value

    1 - the image, which is received after the highpass filtering of source image, must be overlayed on the source image without transparency;
    otherwise - the image, which is received after the highpass filtering of source image, must be overlayed on the source image with transparency, which is specified by this property.
    Default value is 1.
    Exceptions
    ExceptionDescription
    Thrown if value is less than 0 or more than 1.
    Requirements

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

    See Also