Columns

FootnoteOptions.Columns property

Specifies the number of columns with which the footnotes area is formatted.

public int Columns { get; set; }

Remarks

If this property has the value of 0, the footnotes area is formatted with a number of columns based on the number of columns on the displayed page. The default value is 0.

Examples

Shows how to split the footnote section into a given number of columns.

Document doc = new Document(MyDir + "Footnotes and endnotes.docx");
doc.FootnoteOptions.Columns = 2;
doc.Save(ArtifactsDir + "Document.FootnoteColumns.docx");

See Also