ActualReferenceMark

Footnote.ActualReferenceMark property

Gets the actual text of the reference mark displayed in the document for this footnote.

public string ActualReferenceMark { get; }

Remarks

To initially populate values of this property for all reference marks of the document, or to update the values after changes in the document that might affect the reference marks, you must execute the UpdateActualReferenceMarks method. Updating fields (UpdateFields) may also be necessary to get the correct result.

Examples

Shows how to get actual footnote reference mark.

Document doc = new Document(MyDir + "Footnotes and endnotes.docx");

Footnote footnote = (Footnote)doc.GetChild(NodeType.Footnote, 1, true);
doc.UpdateFields();
doc.UpdateActualReferenceMarks();

Assert.AreEqual("1", footnote.ActualReferenceMark);

See Also