Extracts text in the range of rectangle from the given PDF Page. The unit is Point,1/72 inch default. the coordinate origin is top left corner of the page.

Namespace: Spire.Pdf
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public string ExtractText(
	RectangleF rectangleF
)
Public Function ExtractText ( 
	rectangleF As RectangleF
) As String
public:
String^ ExtractText(
	RectangleF rectangleF
)
member ExtractText : 
        rectangleF : RectangleF -> string 

Parameters

rectangleF
RectangleF
Provide a rangle to extract text.

Return Value

String
The Extracted Text.

See Also