TScRGBColor.Create Method
Overloads
TScRGBColor.Create(TUIColor)
Creates a new instance from a system color.
Syntax
Unit: FlexCel.Core
class function TScRGBColor.Create(const RGBColor: TUIColor): TScRGBColor; static; overload;
Parameters
<-> |
Parameter |
Type |
Description |
const |
RGBColor |
TUIColor |
|
See also
TScRGBColor.Create(TColor)
Creates a new instance from a system color.
Syntax
Unit: FlexCel.Core
class function TScRGBColor.Create(const RGBColor: TColor): TScRGBColor; static; overload;
Parameters
<-> |
Parameter |
Type |
Description |
const |
RGBColor |
TColor |
|
See also
TScRGBColor.Create(Double, Double, Double)
Creates a Color from the sc components.
Syntax
Unit: FlexCel.Core
class function TScRGBColor.Create(const scRed: Double; const scGreen: Double; const scBlue: Double): TScRGBColor; static; overload;
Parameters
<-> |
Parameter |
Type |
Description |
const |
scRed |
Double |
Red component. (0-1) |
const |
scGreen |
Double |
Green component. (0-1) |
const |
scBlue |
Double |
Blue component. (0-1) |
See also