Aspose::Words::Fields::FieldChar::get_IsDirty method
Contents
[
Hide
]FieldChar::get_IsDirty method
Gets or sets whether the current result of the field is no longer correct (stale) due to other modifications made to the document.
bool Aspose::Words::Fields::FieldChar::get_IsDirty() const
Examples
Shows how to work with a FieldStart node.
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
auto field = System::ExplicitCast<FieldDate>(builder->InsertField(FieldType::FieldDate, true));
field->get_Format()->set_DateTimeFormat(u"dddd, MMMM dd, yyyy");
field->Update();
SharedPtr<FieldChar> fieldStart = field->get_Start();
ASSERT_EQ(FieldType::FieldDate, fieldStart->get_FieldType());
ASPOSE_ASSERT_EQ(false, fieldStart->get_IsDirty());
ASPOSE_ASSERT_EQ(false, fieldStart->get_IsLocked());
// Retrieve the facade object which represents the field in the document.
field = System::ExplicitCast<FieldDate>(fieldStart->GetField());
ASPOSE_ASSERT_EQ(false, field->get_IsLocked());
ASSERT_EQ(u" DATE \\@ \"dddd, MMMM dd, yyyy\"", field->GetFieldCode());
// Update the field to show the current date.
field->Update();
See Also
- Class FieldChar
- Namespace Aspose::Words::Fields
- Library Aspose.Words for C++