IDitheringSessionIsSequential Property

Gets whether this ditherer allows only sequential processing (line by line). Even returning does not guarantee that every pixel will be queried. It just enforces that queried rows are processed sequentially.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 8.1.0
C#
bool IsSequential { get; }

Property Value

Boolean
If , then the GetDitheredColor method will be called sequentially for each queried pixels. If , then the GetDitheredColor method can be called concurrently for any pixels.

See Also