medium.cs
来自「PDF文件格式解析库源代码」· CS 代码 · 共 73 行
CS
73 行
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// An element that describes a physical medium upon which to render. Some hybrid paper/glass media, such
/// as PDF, may require both paper and glass properties.
/// </summary>
public class medium : element_id
{
public medium() : base("medium") { }
public string imagingBBox
{
set
{
this.SetAttribute("imagingBBox", value);
}
}
public orientation orientation
{
set
{
this.SetAttribute("orientation", value);
}
}
public measurement @long
{
set
{
this.SetAttribute("long", value);
}
}
public measurement @short
{
set
{
this.SetAttribute("short", value);
}
}
public string stock
{
set
{
this.SetAttribute("stock", value);
}
}
public string trayIn
{
set
{
this.SetAttribute("trayIn", value);
}
}
public string trayOut
{
set
{
this.SetAttribute("trayOut", value);
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?