⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 medium.cs

📁 PDF文档生成解析使用的库,可以用来改写自己的文档格式
💻 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 + -