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
Syntaxpublic int Columns { get; set; }
Public Property Columns As Integer
Get
Set
public:
property int Columns {
int get ();
void set (int value);
}
member Columns : int with 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.
ExamplesShows how to set the number of columns with which the footnotes area is formatted.
Document doc = new Document(MyDir + "Footnotes and endnotes.docx");
doc.FootnoteOptions.Columns = 2;
doc.Save(ArtifactsDir + "Document.FootnoteColumns.docx");
See Also