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.
Subtracts two color values to create a new color value.
Definition
Visual Basic Public Shared Function Subtract( _
ByVal c1 As ColorValue, _
ByVal c2 As ColorValue _
) As ColorValueC# public static ColorValue Subtract(
ColorValue c1,
ColorValue c2
);C++ public:
static ColorValue Subtract(
ColorValue c1,
ColorValue c2
);JScript public static function Subtract(
c1 : ColorValue,
c2 : ColorValue
) : ColorValue;
Parameters
c1 Microsoft.DirectX.Direct3D.ColorValue
A ColorValue object that specifies the color to subtract.c2 Microsoft.DirectX.Direct3D.ColorValue
A ColorValue object that specifies the color to subtract.
Return Value
Microsoft.DirectX.Direct3D.ColorValue
A ColorValue object that represents the difference between the two colors.
See Also