DK11 for ActiveX | TatukGIS_XDK11.ITGIS_Color.FromACMYK | Methods | Properties
Creates a transparent color with alpha using the CMYK color model.
// C# public ITGIS_Color FromACMYK( float _a, float _c, float _m, float _y, float _k );
' VisualBasic Public Function FromACMYK( ByVal _a As Single, ByVal _c As Single, ByVal _m As Single, ByVal _y As Single, ByVal _k As Single ) As ITGIS_Color
// Oxygene public function FromACMYK( _a : Single; _c : Single; _m : Single; _y : Single; _k : Single ) : ITGIS_Color;
Name | Type | Description |
---|---|---|
_a | float Single | alpha; expected value: 0..1 |
_c | float Single | cyan; expected value: 0..1 |
_m | float Single | magenta; expected value: 0..1 |
_y | float Single | yellow; expected value: 0..1 |
_k | float Single | key (black); expected value: 0..1 |
Type | Description |
---|---|
ITGIS_Color | Created color. |