FieldCharFieldType Property |
Namespace: Aspose.Words.Fields
Document doc = new Document(MyDir + "Table of contents.docx"); FieldChar fieldStart = (FieldChar)doc.GetChild(NodeType.FieldStart, 0, true); Assert.AreEqual(FieldType.FieldTOC, fieldStart.FieldType); Assert.AreEqual(false, fieldStart.IsDirty); Assert.AreEqual(false, fieldStart.IsLocked); // Retrieve the facade object which represents the field in the document Field field = fieldStart.GetField(); Assert.AreEqual(false, field.IsLocked); Assert.AreEqual(" TOC \\o \"1-3\" \\h \\z \\u ", field.GetFieldCode()); // This updates only this field in the document. field.Update();