java.lang.Objectcom.aspose.words.FootnoteOptions
public class FootnoteOptions
Example:
Document doc = new Document(getMyDir() + "Document.FootnoteEndnote.docx");
// Lets 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.getFootnoteOptions().setColumns(2);
doc.save(getArtifactsDir() + "Document.FootnoteOptions.docx");
Property Getters/Setters Summary | ||
---|---|---|
int | getColumns() | |
void | setColumns(int value) | |
Specifies the number of columns with which the footnotes area is formatted. | ||
int | getNumberStyle() | |
void | setNumberStyle(int value) | |
Specifies the number format for automatically numbered footnotes. The value of the property is NumberStyle integer constant. | ||
int | getPosition() | |
void | setPosition(int value) | |
Specifies the footnotes position. The value of the property is FootnotePosition integer constant. | ||
int | getRestartRule() | |
void | setRestartRule(int value) | |
Determines when automatic numbering restarts. The value of the property is FootnoteNumberingRule integer constant. | ||
int | getStartNumber() | |
void | setStartNumber(int value) | |
Specifies the starting number or character for the first automatically numbered footnotes. |
Property Getters/Setters Detail |
---|
getColumns/setColumns | |
public int getColumns() / public void setColumns(int value) |
Example:
Shows how to set the number of columns with which the footnotes area is formatted.Document doc = new Document(getMyDir() + "Document.FootnoteEndnote.docx"); // Lets 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.getFootnoteOptions().setColumns(2); doc.save(getArtifactsDir() + "Document.FootnoteOptions.docx");
getNumberStyle/setNumberStyle | |
public int getNumberStyle() / public void setNumberStyle(int value) |
Not all number styles are applicable for this property. For the list of applicable number styles see the Insert Footnote or Endnote dialog box in Microsoft Word. If you select a number style that is not applicable, Microsoft Word will revert to a default value.
Example:
Shows how to define numbering format for footnotes in the document.Document doc = new Document(getMyDir() + "Document.FootnoteEndnote.docx"); doc.getFootnoteOptions().setNumberStyle(NumberStyle.ARABIC_1);
getPosition/setPosition | |
public int getPosition() / public void setPosition(int value) |
Example:
Shows how to define footnote position in the document.Document doc = new Document(getMyDir() + "Document.FootnoteEndnote.docx"); doc.getFootnoteOptions().setPosition(FootnotePosition.BENEATH_TEXT);
getRestartRule/setRestartRule | |
public int getRestartRule() / public void setRestartRule(int value) |
Example:
Shows how to define when automatic numbering for footnotes restarts in the document.Document doc = new Document(getMyDir() + "Document.FootnoteEndnote.docx"); doc.getFootnoteOptions().setRestartRule(FootnoteNumberingRule.RESTART_PAGE);
getStartNumber/setStartNumber | |
public int getStartNumber() / public void setStartNumber(int value) |
This property has effect only when
Example:
Shows how to define the starting number or character for the first automatically numbered footnotes.Document doc = new Document(getMyDir() + "Document.FootnoteEndnote.docx"); doc.getFootnoteOptions().setStartNumber(1);