Aspose::Words::Fields::Field::get_Type method
Field::get_Type method
Gets the Microsoft Word field type.
virtual Aspose::Words::Fields::FieldType Aspose::Words::Fields::Field::get_Type() const
Examples
Shows how to insert a field into a document using a field code.
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
SharedPtr<Field> field = builder->InsertField(u"DATE \\@ \"dddd, MMMM dd, yyyy\"");
ASSERT_EQ(FieldType::FieldDate, field->get_Type());
ASSERT_EQ(u"DATE \\@ \"dddd, MMMM dd, yyyy\"", field->GetFieldCode());
// This overload of the InsertField method automatically updates inserted fields.
ASSERT_LE(System::Math::Abs((System::DateTime::Parse(field->get_Result()) - System::DateTime::get_Today()).get_Hours()), 24);
See Also
- Enum FieldType
- Class Field
- Namespace Aspose::Words::Fields
- Library Aspose.Words for C++