Finds the recognized text that best intersects a specified area.
'Declaration
Public Function FindValueInTextBlocks( _
ByVal As Rectangle, _
ByVal As FormFieldDataType, _
ByRef As Byte, _
ByRef 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 ,
FormFieldDataType ,
out byte ,
out Rectangle
)
public: string* FindValueInTextBlocks(
Rectangle ,
FormFieldDataType ,
[PARAMFLAG::Out] byte ,
[PARAMFLAG::Out] Rectangle
)
public:
String^ FindValueInTextBlocks(
Rectangle ,
FormFieldDataType ,
[Out] byte ,
[Out] Rectangle
)
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.