for (Paragraph paragraph : footnote.getParagraphs()) {
for (Run run : paragraph.getRuns()) {
run.getFont().setColor(Color.RED);
}
}...// Load the document Document doc = new Document("Document.docx");...FootnoteOptions footnoteOptions = doc.getFootnoteOptions(); footnoteOptions...