Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Adds two color values together to create a new color value.
Definition
Visual Basic Public Shared Function Add( _
ByVal c1 As Color, _
ByVal c2 As Color_
) As ColorC# public static Color Add(
Colorc1,
Colorc2
);C++ public:
static ColorAdd(
Colorc1,
Colorc2
);JScript public static function Add(
c1 : Color,
c2 : Color
) : Color;
Parameters
c1 System.Drawing.Color
A Colorobject that specifies the color to add.
c2 System.Drawing.Color
A Colorobject that specifies the color to add.
Return Value
System.Drawing.Color
Returns a Colorobject that represents the sum of the two colors added together.
See Also
.gif)