Method | Description | |
---|---|---|
Color ( int r, int g, int b, int a ) : System |
Initializes a new Color.
|
|
Equals ( Color color ) : bool |
Determines, if this Object is equal with another.
|
|
Equals ( object obj ) : bool |
Determines, if this Object is equal with another.
|
|
FromArgb ( int a, int r, int g, int b ) : Color |
Generates a Color from the given Values.
|
|
GetHashCode ( ) : int |
Gets the HashCode for the current Color.
|
|
Multiply ( Color value, float scale ) : Color |
Multiplies the specified color.
|
|
ToColor ( string stringColor ) : Color |
Counterpart for ToString.
|
|
ToString ( ) : string |
Color Converted to String.
|
|
operator ( ) : Color |
The * Operator.
|
|
operator ( ) : bool |
The != Operator.
|
public Color ( int r, int g, int b, int a ) : System | ||
r | int | The RedValue. |
g | int | The GreenValue. |
b | int | The BlueValue. |
a | int | The AlphaValue. |
return | System |
public static FromArgb ( int a, int r, int g, int b ) : Color | ||
a | int | The AlphaValue. |
r | int | The RedValue. |
g | int | The GreenValue. |
b | int | The BlueValue. |
return | Color |
public static Multiply ( Color value, float scale ) : Color | ||
value | Color | The value. |
scale | float | The scale. |
return | Color |
public static ToColor ( string stringColor ) : Color | ||
stringColor | string | The ColorString. |
return | Color |