UnlinkFields

Range.UnlinkFields method

Отменяет связь полей в этом диапазоне.

public void UnlinkFields()

Примечания

Заменяет все поля в этом диапазоне самыми последними результатами.

Чтобы отменить связь полей во всем документе, используйтеUnlinkFields.

Примеры

Показывает, как отменить связь всех полей в диапазоне.

Document doc = new Document(MyDir + "Linked fields.docx");

Section newSection = (Section)doc.Sections[0].Clone(true);
doc.Sections.Add(newSection);

doc.Sections[1].Range.UnlinkFields();

Смотрите также