1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.Model.Dialog.HomePageToolsDialogs
- {
- public class HtmlModel
- {
-
-
-
- public string FilePath { get; set; } = "";
-
-
-
- public Microsoft.Office.Interop.Word.WdPaperSize PageSize { get; set; } = Microsoft.Office.Interop.Word.WdPaperSize.wdPaperCustom;
-
-
-
- public double Margin { get; set; } = 0;
- }
- }
|