UpdateActualReferenceMarks

Document.UpdateActualReferenceMarks method

GüncellerActualReferenceMark belgedeki tüm dipnot ve sonnotların mülkiyeti.

public void UpdateActualReferenceMarks()

Notlar

Alanlar güncelleniyor (UpdateFields ) doğru sonucu elde etmek için gerekli olabilir.

Örnekler

Gerçek dipnot referans işaretinin nasıl alınacağını gösterir.

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);

Ayrıca bakınız