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