Files
QuestPDF/QuestPDF/Elements/InternalLink.cs
T
2021-04-17 21:52:33 +02:00

20 lines
523 B
C#

using QuestPDF.Infrastructure;
namespace QuestPDF.Elements
{
internal class InternalLink : ContainerElement
{
public string LocationName { get; set; }
internal override void Draw(ICanvas canvas, Size availableSpace)
{
var targetSize = Child?.Measure(availableSpace) as Size;
if (targetSize == null)
return;
canvas.DrawLocationLink(LocationName, targetSize);
Child?.Draw(canvas, availableSpace);
}
}
}