FontStyleItem.cs 518 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Media;
  8. namespace PDF_Office.Model.PropertyPanel.AnnotPanel
  9. {
  10. public class FontStyleItem
  11. {
  12. public string mFontStyleName { get; set; }
  13. public int mFontSize { get; set; }
  14. public FontFamily mFontFamily { get; set; }
  15. public FontStyle mFontStyle { get; set; }
  16. public FontWeight mFontWeight { get; set; }
  17. }
  18. }