mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-07-19 06:29:58 +08:00
21 lines
467 B
C#
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;
|
|
}
|
|
}
|
|
} |