ColorBlend Method (Color, Color) |
Blends the blendColor onto the specified baseColor. Uses alpha component of blendColor
to detemine the blending factor.
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static Color Blend(
Color baseColor,
Color blendColor
)
Public Shared Function Blend (
baseColor As Color,
blendColor As Color
) As Color
static member Blend :
baseColor : Color *
blendColor : Color -> Color
Parameters
- baseColor
- Type: Eto.DrawingColor
Base color - blendColor
- Type: Eto.DrawingColor
Color to blend onto the base color
Return Value
Type:
Color[Missing <returns> documentation for "M:Eto.Drawing.Color.Blend(Eto.Drawing.Color,Eto.Drawing.Color)"]
Remarks
This computes the blended value of two colors.
See Also