24 lines
674 B
C#
24 lines
674 B
C#
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.Drawing.Proxy
|
|
{
|
|
internal class DebuggingProxy : ElementProxy
|
|
{
|
|
private DebuggingState DebuggingState { get; }
|
|
|
|
public DebuggingProxy(DebuggingState debuggingState, Element child)
|
|
{
|
|
DebuggingState = debuggingState;
|
|
Child = child;
|
|
}
|
|
|
|
internal override SpacePlan Measure(Size availableSpace)
|
|
{
|
|
DebuggingState.RegisterMeasure(Child, availableSpace);
|
|
var spacePlan = base.Measure(availableSpace);
|
|
DebuggingState.RegisterMeasureResult(Child, spacePlan);
|
|
|
|
return spacePlan;
|
|
}
|
|
}
|
|
} |