|
@@ -0,0 +1,20 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+using System.Windows;
|
|
|
+using System.Windows.Media;
|
|
|
+
|
|
|
+namespace PDF_Office.Model.PropertyPanel.AnnotPanel
|
|
|
+{
|
|
|
+ public class FontStyleItem
|
|
|
+ {
|
|
|
+ public string mFontStyleName { get; set; }
|
|
|
+ public int mFontSize { get; set; }
|
|
|
+ public FontFamily mFontFamily { get; set; }
|
|
|
+ public FontStyle mFontStyle { get; set; }
|
|
|
+ public FontWeight mFontWeight { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|