16 lines
458 B
C#
16 lines
458 B
C#
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.Elements.Text.Calculation
|
|
{
|
|
internal class TextMeasurementRequest
|
|
{
|
|
public ICanvas Canvas { get; set; }
|
|
public IPageContext PageContext { get; set; }
|
|
|
|
public int StartIndex { get; set; }
|
|
public float AvailableWidth { get; set; }
|
|
|
|
public bool IsFirstElementInBlock { get; set; }
|
|
public bool IsFirstElementInLine { get; set; }
|
|
}
|
|
} |