[]
Represents a single continuous line of text.
public interface ITextLine : IReadOnlyList<ITextChar>, IReadOnlyCollection<ITextChar>, IEnumerable<ITextChar>, IEnumerable
Gets the ITextParagraph object that owns this line.
ITextParagraph Paragraph { get; }
Gets the list of ITextRunFragment objects.
IReadOnlyList<ITextRunFragment> RunFragments { get; }
Gets the line text.
string Text { get; }
Gets the geometric coordinates (relative to the top left corner of the page) of this line.
Quadrilateral GetCoords()
The Quadrilateral specifying the coordinates on the page.
Gets the geometric coordinates (relative to the top left corner of the page) of a range of ITextChar objects in this line.
Quadrilateral GetCoords(int startIndex, int count)
The Quadrilateral specifying the coordinates on the page.
Gets the geometric coordinates (relative to the top left corner of the page) of this line.
PointF[] GetPoints()
The array of points specifying the coordinates on the page.
Gets the geometric coordinates (relative to the top left corner of the page) of a range of ITextChar objects in this line.
PointF[] GetPoints(int startIndex, int count)
The array of points specifying the coordinates on the page.
Returns the text of a range of ITextChar objects in this line.
string GetText(int startIndex, int count)
The text of specified range of ITextChar objects.