VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Encoders Namespace / PdfMrcCompressionSettings Class / CreateImagesLayer Property
Syntax Requirements SeeAlso
In This Topic
    CreateImagesLayer Property (PdfMrcCompressionSettings)
    In This Topic
    Gets or sets a value indicating whether the images layer must be created.
    Syntax
    'Declaration
    
    <DescriptionAttribute("A value indicating whether the images layer must be created.")>
    <DefaultValueAttribute(False)>
    Public Property CreateImagesLayer As Boolean
    
    
    [Description("A value indicating whether the images layer must be created.")]
    [DefaultValue(False)]
    public bool CreateImagesLayer { get; set; }
    
    
    [Description("A value indicating whether the images layer must be created.")]
    [DefaultValue(False)]
    public: __property bool get_CreateImagesLayer();
    public: __property void set_CreateImagesLayer(
    bool value
    );
    [Description("A value indicating whether the images layer must be created.")]
    [DefaultValue(False)]
    public:
    property bool CreateImagesLayer { bool get(); void set(bool value); }

    Property Value

    true - the images layer must be created, each image found on the source image will be stored separately as image-resource; false - the images layer must not be created, each image found on the source image will be placed in the background layer.
    Default value is false.
    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