mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-07-18 00:28:17 +08:00
15 lines
325 B
C#
15 lines
325 B
C#
namespace UglyToad.PdfPig.Content
|
|
{
|
|
/// <summary>
|
|
/// Contains the values inherited from the Page Tree for this page.
|
|
/// </summary>
|
|
internal class PageTreeMembers
|
|
{
|
|
public CropBox GetCropBox()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public MediaBox MediaBox { get; set; }
|
|
}
|
|
} |