Gets the size of the area where a field is searched.
Examples
The following example shows the code for the situation if it’s known that the field with an invoice number is placed on the right of “Invoice number” string the following code is used:
// Create a regex template field to find "Invoice Number" textTemplateFieldinvoice=newTemplateField(newTemplateRegexPosition("Invoice Number"),"Invoice");// Create a related template field associated with "Invoice" field and extract the value on the right of itTemplateFieldinvoiceNumber=newTemplateField(newTemplateLinkedPosition("invoice",newSize(100,15),newTemplateLinkedPositionEdges(false,false,true,false)),"InvoiceNumber");