19 lines
382 B
PHP
19 lines
382 B
PHP
|
{ custom color settings for SQL editor }
|
||
|
|
||
|
{
|
||
|
property BlockColor: TColor;
|
||
|
property BlockFontColor: TColor;
|
||
|
property Color;
|
||
|
property CommentAttr: TFont;
|
||
|
property Font;
|
||
|
property KeywordAttr: TFont;
|
||
|
property NumberAttr: TFont;
|
||
|
property StringAttr: TFont;
|
||
|
property TextAttr: TFont;
|
||
|
}
|
||
|
|
||
|
{ example:
|
||
|
Color := clBlack;
|
||
|
TextAttr.Color := clGreen;
|
||
|
}
|