AnimatedGifConfigurationReportOverallProgress Property

Gets or sets whether to report overall and/or sub-task progress when encoding by GifEncoder.BeginEncodeAnimation and GifEncoder.EncodeAnimationAsync methods and the AsyncConfigBase.Progress property is set. When , then both are reported.
Default value: .

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
C#
public bool? ReportOverallProgress { get; set; }

Property Value

NullableBoolean
If , then both overall and sub-task progress are reported. You can filter overall progress steps by considering Saving operations only.
If , then only overall progress steps are reported. Please note that if the count of the IEnumerableT instance passed to the constructor cannot be determined in a trivial way, then the maximum value of the steps will be adjusted dynamically.
If , then only sub-task progress steps are reported such as optimizing palette, quantizing and other processing operations.

See Also