FootnoteOptionsColumns Property

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

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public int Columns { get; set; }

Property Value

Type: Int32
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 set the number of columns with which the footnotes area is formatted.
Document doc = new Document(MyDir + "Footnotes and endnotes.docx");

// Let's change number of columns for footnotes on page. If columns value is 0 than footnotes area
// is formatted with a number of columns based on the number of columns on the displayed page
doc.FootnoteOptions.Columns = 2;
doc.Save(ArtifactsDir + "Document.FootnoteColumns.docx");
See Also