mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-10-14 19:05:01 +08:00
update the readme and document public properties
This commit is contained in:
@@ -2,6 +2,9 @@
|
||||
{
|
||||
using Geometry;
|
||||
|
||||
/// <summary>
|
||||
/// A glyph or combination of glyphs (characters) drawn by a PDF content stream.
|
||||
/// </summary>
|
||||
public class Letter
|
||||
{
|
||||
/// <summary>
|
||||
|
@@ -20,8 +20,14 @@
|
||||
|
||||
internal PageContent Content { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The set of <see cref="Letter"/>s drawn by the PDF content.
|
||||
/// </summary>
|
||||
public IReadOnlyList<Letter> Letters => Content?.Letters ?? new Letter[0];
|
||||
|
||||
/// <summary>
|
||||
/// The full text of all characters on the page in the order they are presented in the PDF content.
|
||||
/// </summary>
|
||||
public string Text { get; }
|
||||
|
||||
/// <summary>
|
||||
|
Reference in New Issue
Block a user