CustomBitmapDataConfigRowSetPColor32 Property

Gets or sets a delegate that can set a pixel of a row in the custom bitmap data from a PColor32 value. An image processing operation may prefer this delegate if HasPremultipliedAlpha is set in PixelFormat. If this property is not set, the other delegates tried to be used as a fallback. Make sure you access the row content via the ICustomBitmapDataRow parameter of the delegate.
Default value: .

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.0.0
C#
public Action<ICustomBitmapDataRow, int, PColor32>? RowSetPColor32 { get; set; }

Property Value

ActionICustomBitmapDataRow, Int32, PColor32

See Also