unlink method
unlink()
Performs the field unlink.
def unlink(self):
...
Remarks
Replaces the field with its most recent result.
Some fields, such as XE (Index Entry) fields and SEQ (Sequence) fields, cannot be unlinked.
Returns
True
if the field has been unlinked, otherwise False
.
Examples
Shows how to unlink a field.
doc = aw.Document(MY_DIR + 'Linked fields.docx')
doc.range.fields[1].unlink()
See Also
- module aspose.words.fields
- class Field