Footnote options

How do I change the footnote options? I am using version 4.2.6.0 if that matters.

Adam

Hi
Thanks for your inquiry. You can use FootnoteOptions. See the following link for more information.
https://reference.aspose.com/words/net/aspose.words.notes/footnoteoptions/
You can do this using the following code.

//Open document
Document doc = new Document("in.doc");
//Change footnote options
doc.FootnoteOptions.Location = FootnoteLocation.BottomOfPage;
//Save document
doc.Save("out.doc");

I hope this could help you.
Best regards.

It appears that this property was not available in Aspose.Words 4.2.6

In general, is there any good way of determining the first release that any particular property / method / class was available in?

Adam

Hi
Sorry, I missed to tell that this feature is implemented in Aspose.Words v4.3.0.0. See the following link.
https://reference.aspose.com/words/net/aspose.words.notes/footnoteoptions/
Best regards.