📄 medium.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -