| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- export declare class SColor {
- static readonly Transparent: SColor;
- static readonly Black: SColor;
- static readonly DarkBlue: SColor;
- static readonly Blue: SColor;
- static readonly DarkGreen: SColor;
- static readonly Green: SColor;
- static readonly DarkCyan: SColor;
- static readonly Cyan: SColor;
- static readonly DarkRed: SColor;
- static readonly Red: SColor;
- static readonly DarkMagenta: SColor;
- static readonly Magenta: SColor;
- static readonly DarkYellow: SColor;
- static readonly Yellow: SColor;
- static readonly White: SColor;
- static readonly DarkGray: SColor;
- static readonly Gray: SColor;
- static readonly LightGray: SColor;
- static rgb(r: number, g: number, b: number): SColor;
- static rgba(r: number, g: number, b: number, a: number): SColor;
- get red(): number;
- set red(v: number);
- get green(): number;
- set green(v: number);
- get blue(): number;
- set blue(v: number);
- get alpha(): number;
- set alpha(v: number);
- private _value;
- get value(): string;
- set value(v: string);
- constructor();
- constructor(r: number, g: number, b: number);
- constructor(r: number, g: number, b: number, a: number);
- constructor(color: string);
- constructor(color: SColor);
- private setRgb;
- private setRgba;
- }
|