GetField
Contents
[
Hide
]FieldChar.GetField method
Returns a field for the field char.
public Field GetField()
Return Value
A field for the field char.
Remarks
A new Field
object is created each time the method is called.
Examples
Shows how to work with a FieldStart node.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
FieldDate field = (FieldDate)builder.InsertField(FieldType.FieldDate, true);
field.Format.DateTimeFormat = "dddd, MMMM dd, yyyy";
field.Update();
FieldChar fieldStart = field.Start;
Assert.AreEqual(FieldType.FieldDate, fieldStart.FieldType);
Assert.AreEqual(false, fieldStart.IsDirty);
Assert.AreEqual(false, fieldStart.IsLocked);
// Retrieve the facade object which represents the field in the document.
field = (FieldDate)fieldStart.GetField();
Assert.AreEqual(false, field.IsLocked);
Assert.AreEqual(" DATE \\@ \"dddd, MMMM dd, yyyy\"", field.GetFieldCode());
// Update the field to show the current date.
field.Update();
See Also
- class Field
- class FieldChar
- namespace Aspose.Words.Fields
- assembly Aspose.Words