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.
Namespace: KGySoft.Drawing.ImagingAssembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 8.0.0-preview.1
bool IsSequential { get; }
ReadOnly Property IsSequential As Boolean
Get
property bool IsSequential {
bool get ();
}
abstract IsSequential : bool with 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.