PTTextExtractorLine
@interface PTTextExtractorLine : NSObject
TextExtractor::Line object represents a line of text on a PDF page. Each line consists of a sequence of words, and each words in one or more styles.
-
Declaration
Objective-C
- (int)GetNumWords;Swift
func getNumWords() -> Int32Return Value
The number of words in this line.
-
Declaration
Objective-C
- (BOOL)IsSimpleLine;Swift
func isSimpleLine() -> BoolReturn Value
true is this line is not rotated (i.e. if the quadrilaterals returned by GetBBox() and GetQuad() coincide).
-
Declaration
Objective-C
- (NSMutableArray *)GetQuad;Swift
func getQuad() -> NSMutableArray!Return Value
The quadrilateral representing a tight bounding box for this line (in unrotated page coordinates).
-
Declaration
Objective-C
- (PTTextExtractorLine *)GetNextLine;Swift
func getNext() -> PTTextExtractorLine!Return Value
the next line on the page.
-
Declaration
Objective-C
- (int)GetCurrentNum;Swift
func getCurrentNum() -> Int32Return Value
the index of this line of the current page.
-
Declaration
Objective-C
- (PTTextExtractorStyle *)GetStyle;Swift
func getStyle() -> PTTextExtractorStyle!Return Value
predominant style for this line.
-
Declaration
Objective-C
- (int)GetParagraphID;Swift
func getParagraphID() -> Int32Return Value
The unique identifier for a paragraph or column that this line belongs to. This information can be used to identify which lines belong to which paragraphs.
-
Declaration
Objective-C
- (int)GetFlowID;Swift
func getFlowID() -> Int32Return Value
The unique identifier for a paragraph or column that this line belongs to. This information can be used to identify which lines/paragraphs belong to which flows.
-
Declaration
Objective-C
- (BOOL)EndsWithHyphen;Swift
func endsWithHyphen() -> BoolReturn Value
true is this line of text ends with a hyphen (i.e. ‘-’), false otherwise.
-
Declaration
Objective-C
- (BOOL)IsValid;Swift
func isValid() -> BoolReturn Value
true if this is a valid line, false otherwise.
-
Undocumented
Declaration
Objective-C
- (BOOL)isEqualTo: (PTTextExtractorLine*)arg0;Swift
func isEqual(to arg0: PTTextExtractorLine!) -> Bool -
Undocumented
Declaration
Objective-C
- (instancetype)init;Swift
init!()
PTTextExtractorLine Class Reference