ApiExamples.ExHtmlFixedSaveOptions.PageMargins C# (CSharp) Метод

PageMargins() приватный Метод

private PageMargins ( int margin ) : void
margin int
Результат void
        public void PageMargins(int margin)
        {
            Document doc = new Document(MyDir + "Bookmark.doc");

            HtmlFixedSaveOptions saveOptions = new HtmlFixedSaveOptions();
            saveOptions.PageMargins = margin;

            doc.Save(MyDir + @"\Artifacts\HtmlFixedPageMargins.html", saveOptions);
        }
    }