CustomBitmapDataConfigRowSetPColorF Property
Gets or sets a delegate that can set a pixel of a row in the custom bitmap data from a
PColorF value.
An image processing operation may prefer this delegate if
Prefers128BitColors and
HasPremultipliedAlpha
are 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:
.
Namespace: KGySoft.Drawing.ImagingAssembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.0.0
public Action<ICustomBitmapDataRow, int, PColorF>? RowSetPColorF { get; set; }
Public Property RowSetPColorF As Action(Of ICustomBitmapDataRow, Integer, PColorF)
Get
Set
public:
property Action<ICustomBitmapDataRow^, int, PColorF>^ RowSetPColorF {
Action<ICustomBitmapDataRow^, int, PColorF>^ get ();
void set (Action<ICustomBitmapDataRow^, int, PColorF>^ value);
}
member RowSetPColorF : Action<ICustomBitmapDataRow, int, PColorF> with get, set
Property Value
ActionICustomBitmapDataRow,
Int32,
PColorF