VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Processing Namespace / PdfDocumentCompressorCommand Class / UseFlateInsteadLzwCompression Property
Syntax Requirements SeeAlso
In This Topic
    UseFlateInsteadLzwCompression Property (PdfDocumentCompressorCommand)
    In This Topic
    Gets or sets a value indicating whether the command must change PDF stream with LZW compression to Flate (ZIP) compression.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(False)>
    <CategoryAttribute("Resources")>
    <DescriptionAttribute("A value indicating whether the command must change PDF stream with LZW compression to Flate (ZIP) compression.")>
    Public Property UseFlateInsteadLzwCompression As Boolean
    
    
    [DefaultValue(False)]
    [Category("Resources")]
    [Description("A value indicating whether the command must change PDF stream with LZW compression to Flate (ZIP) compression.")]
    public bool UseFlateInsteadLzwCompression { get; set; }
    
    
    [DefaultValue(False)]
    [Category("Resources")]
    [Description("A value indicating whether the command must change PDF stream with LZW compression to Flate (ZIP) compression.")]
    public: __property bool get_UseFlateInsteadLzwCompression();
    public: __property void set_UseFlateInsteadLzwCompression(
    bool value
    );
    [DefaultValue(False)]
    [Category("Resources")]
    [Description("A value indicating whether the command must change PDF stream with LZW compression to Flate (ZIP) compression.")]
    public:
    property bool UseFlateInsteadLzwCompression { bool get(); void set(bool value); }

    Property Value

    True - command must change PDF stream with LZW compression to Flate (ZIP) compression; false - command must NOT change PDF stream with LZW compression.
    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