An instance of PageArea class that represents the value of the field.
Examples
Depending on field PageArea property can contain any of the inheritors of PageArea class. For example, ParseForm method extracts only text fields.
// Get the field dataFieldDatafield=data[i];// Check if the field data contains a textif(field.PageAreaisPageTextArea){// Print the field text valueConsole.WriteLine(field.Text);}