البحث عن خصائص الحقل

Contents
[ ]

حقل يتم إدراجه باستخدام DocumentBuilder.InsertField إرجاع كائن Field. هذه فئة واجهة توفر طرقا مفيدة للعثور بسرعة على خصائص الحقل هذه.

يوضح مثال التعليمات البرمجية التالية كيفية العثور على رمز الحقل والنتيجة الميدانية:

// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java
Document doc = new Document(getMyDir() + "Hyperlinks.docx");
for (Field field : doc.getRange().getFields())
{
String fieldCode = field.getFieldCode();
String fieldResult = field.getResult();
}

ملاحظة إذا كنت تبحث فقط عن أسماء حقول الدمج في المستند، فيمكنك بدلا من ذلك استخدام الطريقة المضمنة GetFieldNames.

يوضح مثال الكود التالي كيفية الحصول على أسماء جميع حقول الدمج في مستند.

// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java
Document doc = new Document();
String[] fieldNames = doc.getMailMerge().getFieldNames();