TextLineElement.cs 239 B

12345678910
  1. using QuestPDF.Elements.Text.Items;
  2. namespace QuestPDF.Elements.Text.Calculation
  3. {
  4. internal class TextLineElement
  5. {
  6. public ITextBlockItem Item { get; set; }
  7. public TextBlockSize Measurement { get; set; }
  8. }
  9. }