Files
lazarus-ccr/components/richmemo/richmemotypes.pas
skalogryz 3eb6fb7a4f started RichMemo package
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@820 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2009-06-04 19:38:39 +00:00

24 lines
300 B
ObjectPascal

unit RichMemoTypes;
{$mode objfpc}{$H+}
interface
uses
Graphics;
type
TTextStyleMask = set of (tsm_Color, tsm_Name, tsm_Size, tsm_Styles);
TFontParams = record
Name : String;
Size : Integer;
Color : TColor;
Style : TFontStyles;
end;
implementation
end.