ApiExamples.ExDocument.FootnoteOptionsEx C# (CSharp) Метод

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

private FootnoteOptionsEx ( ) : void
Результат void
        public void FootnoteOptionsEx()
        {
            //ExStart
            //ExFor:Document.FootnoteOptions
            //ExSummary:Shows how to insert a footnote and apply footnote options.
            Document doc = new Document();
            DocumentBuilder builder = new DocumentBuilder(doc);

            builder.InsertFootnote(FootnoteType.Footnote, "My Footnote.");

            // Change your document's footnote options.
            doc.FootnoteOptions.Location = FootnoteLocation.BottomOfPage;
            doc.FootnoteOptions.NumberStyle = NumberStyle.Arabic;
            doc.FootnoteOptions.StartNumber = 1;

            doc.Save(MyDir + @"\Artifacts\Document.FootnoteOptions.doc");
            //ExEnd
        }
ExDocument