Compares two Color structs for equality
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static bool operator ==(
Color color1,
Color color2
)
Public Shared Operator = (
color1 As Color,
color2 As Color
) As Boolean
static let inline (=)
color1 : Color *
color2 : Color : bool
Parameters
- color1
- Type: Eto.DrawingColor
The first Color struct to compare - color2
- Type: Eto.DrawingColor
The second Color struct to compare
Return Value
Type:
BooleanTrue if both the Color structs have the same values for all ARGB components
See Also