Footnote contents
Hello again,
I'm trying to change the contents of a footnote. To make sure the footnote character is added correctly I tried 2 different ways:
footnote.contents = SpecialCharacters.FOOTNOTE_SYMBOL;
footnote.contents += 'test';
and
footnote.contents = String.fromCharCode(4) + 'test';
but in both cases the footnote symbol is missing after the procedure, but the text is shown correct in the document. Is there something I am missing here or simply a bug?
Thanks.