123456789101112131415161718192021 |
- import 'package:fis_lib_report/report/interfaces/lineElemnt.dart';
- import 'package:fis_lib_report/report/rt_color.dart';
- abstract class ITextElement extends IInLineElemnt {
- String? fontName;
- double? fontSize;
- List<RTFontStyle>? fontStyles;
- RTColor? fontColor;
- RTColor? background;
- int? lineLength;
- double? lineWidth;
- bool? textWrap;
- }
- enum RTFontStyle {
- Regular,
- Bold,
- Italic,
- Underline,
- Strikeout,
- }
|