Skip to content
Merged

V1 #55

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make TextElement's Letter property public and fix #54
  • Loading branch information
BobLd committed May 4, 2026
commit 87aa14802165a32e8f7435c235328f0709b95638
5 changes: 5 additions & 0 deletions Tabula/TextElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ public TextElement(PdfRectangle pdfRectangle, FontDetails font, double fontSize,
}
public string GetText() => text;

/// <summary>
/// Gets the PdfPig letter associated.
/// </summary>
public Letter Letter => letter;

/// <summary>
/// The direction of the text (0, 90, 180, or 270). Can be any number with PdfPig.
/// </summary>
Expand Down