VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing Namespace / OverlayCommand Class / HasTransparentColor Property
Syntax Requirements SeeAlso
In This Topic
    HasTransparentColor Property (OverlayCommand)
    In This Topic
    Gets or sets a value indicating whether the TransparentColor is used.
    Syntax
    'Declaration
    
    <DescriptionAttribute("Indicates whether the TransparentColor property is used.")>
    <DefaultValueAttribute(False)>
    Public Property HasTransparentColor As Boolean
    
    
    [Description("Indicates whether the TransparentColor property is used.")]
    [DefaultValue(False)]
    public bool HasTransparentColor { get; set; }
    
    
    [Description("Indicates whether the TransparentColor property is used.")]
    [DefaultValue(False)]
    public: __property bool get_HasTransparentColor();
    public: __property void set_HasTransparentColor(
    bool value
    );
    [Description("Indicates whether the TransparentColor property is used.")]
    [DefaultValue(False)]
    public:
    property bool HasTransparentColor { bool get(); void set(bool value); }

    Property Value

    true - image processing command do not overlay pixel of image if pixel color equal TransparentColor; false - image processing command does not check transparency of pixel color and always overlays pixel.
    Default value is false.
    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