VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Processing Namespace / PdfDocumentCompressorCommand Class / IsMultithreadingEnabled Property
Syntax Remarks Requirements SeeAlso
In This Topic
    IsMultithreadingEnabled Property (PdfDocumentCompressorCommand)
    In This Topic
    Gets or sets a value indicating whether the command must use multithreading.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(True)>
    <DescriptionAttribute("A value indicating whether the command must use multithreading.")>
    Public Property IsMultithreadingEnabled As Boolean
    
    
    [DefaultValue(True)]
    [Description("A value indicating whether the command must use multithreading.")]
    public bool IsMultithreadingEnabled { get; set; }
    
    
    [DefaultValue(True)]
    [Description("A value indicating whether the command must use multithreading.")]
    public: __property bool get_IsMultithreadingEnabled();
    public: __property void set_IsMultithreadingEnabled(
    bool value
    );
    [DefaultValue(True)]
    [Description("A value indicating whether the command must use multithreading.")]
    public:
    property bool IsMultithreadingEnabled { bool get(); void set(bool value); }

    Property Value

    True if this processing command must use multithreading; otherwise, false. Default value is true.
    Remarks

    Count of used threads can be set using the MaxThreads property.

    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