'Declaration Public Function FindValueInTextBlocks( _ ByVal area As Rectangle, _ ByVal fieldType As FormFieldDataType, _ ByRef confidence As Byte, _ ByRef boundingArea As Rectangle _ ) As String
'Usage Dim instance As DocumentPage Dim area As Rectangle Dim fieldType As FormFieldDataType Dim confidence As Byte Dim boundingArea As Rectangle Dim value As String value = instance.FindValueInTextBlocks(area, fieldType, confidence, boundingArea)
public string FindValueInTextBlocks( Rectangle area, FormFieldDataType fieldType, out byte confidence, out Rectangle boundingArea )
public: string* FindValueInTextBlocks( Rectangle area, FormFieldDataType fieldType, [PARAMFLAG::Out] byte confidence, [PARAMFLAG::Out] Rectangle boundingArea )
public: String^ FindValueInTextBlocks( Rectangle area, FormFieldDataType fieldType, [Out] byte confidence, [Out] Rectangle boundingArea )
Parameters
- area
- Area in which to find recognized text. Measured in pixels from the top left of the DocumentPage.
- fieldType
- Type of field data. Used for normalization.
- confidence
- Confidence of the return value.
- boundingArea
- Bounding area around the found text. Measured in pixels from the top left of the DocumentPage.
Return Value
Text found in the specified area.