PdfPageTextFragment class abstract

Text fragment in PDF page.

Constructors

PdfPageTextFragment()

Properties

bounds PdfRect
Bounds of the text fragment in PDF page coordinates.
no setter
charRects List<PdfRect>?
Fragment's child character bounding boxes in PDF page coordinates if available.
no setter
end int
End index of the text fragment on PdfPageText.fullText.
no setter
hashCode int
The hash code for this object.
no setteroverride
index int
Fragment's index on PdfPageText.fullText; text is the substring of PdfPageText.fullText at index.
no setter
length int
Length of the text fragment.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
text String
Text for the fragment.
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(covariant PdfPageTextFragment other) bool
The equality operator.
override

Static Methods

fromParams(int index, int length, PdfRect bounds, String text, {List<PdfRect>? charRects}) PdfPageTextFragment
Create a PdfPageTextFragment.