PdfPig/src/UglyToad.PdfPig/Content/PageTreeMembers.cs
2018-01-10 19:49:32 +00:00

21 lines
467 B
C#

namespace UglyToad.PdfPig.Content
{
using System;
/// <summary>
/// Contains the values inherited from the Page Tree for this page.
/// </summary>
internal class PageTreeMembers
{
public MediaBox GetMediaBox()
{
// TODO: tree inheritance
throw new NotImplementedException("Track inherited members");
}
public CropBox GetCropBox()
{
return null;
}
}
}