VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing Namespace / OverlayMaskedCommand Class / MaskImage Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    MaskImage Property (OverlayMaskedCommand)
    In This Topic
    Gets or sets the black-white or 8-bit image mask.
    Syntax
    'Declaration
    
    <DescriptionAttribute("The black-white or 8-bit image mask.")>
    <DefaultValueAttribute(null)>
    Public Property MaskImage As Vintasoft.Imaging.VintasoftImage
    
    
    [Description("The black-white or 8-bit image mask.")]
    [DefaultValue(null)]
    public Vintasoft.Imaging.VintasoftImage MaskImage { get; set; }
    
    
    [Description("The black-white or 8-bit image mask.")]
    [DefaultValue(null)]
    public: __property Vintasoft.Imaging.VintasoftImage* get_MaskImage();
    public: __property void set_MaskImage(
    Vintasoft.Imaging.VintasoftImage* value
    );
    [Description("The black-white or 8-bit image mask.")]
    [DefaultValue(null)]
    public:
    property Vintasoft.Imaging.VintasoftImage^ MaskImage { Vintasoft.Imaging.VintasoftImage^ get(); void set(Vintasoft.Imaging.VintasoftImage^ value); }

    Property Value

    Black-white or 8-bit image mask used to generate the new image. Supported formats are BlackWhite and Gray8.
    Exceptions
    ExceptionDescription
    Thrown if mask image is null.
    Thrown if mask image is not black-white or 8-bpp gray image.
    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