textElement.dart 429 B

123456789101112131415161718192021
  1. import 'package:fis_lib_report/report/interfaces/lineElemnt.dart';
  2. import 'package:fis_lib_report/report/rt_color.dart';
  3. abstract class ITextElement extends IInLineElemnt {
  4. String? fontName;
  5. double? fontSize;
  6. List<RTFontStyle>? fontStyles;
  7. RTColor? fontColor;
  8. RTColor? background;
  9. int? lineLength;
  10. double? lineWidth;
  11. bool? textWrap;
  12. }
  13. enum RTFontStyle {
  14. Regular,
  15. Bold,
  16. Italic,
  17. Underline,
  18. Strikeout,
  19. }