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

📄 contentarea.cs

📁 PDF文档生成解析使用的库,可以用来改写自己的文档格式
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace AnotherPDFLib.XFA
{
	/// <summary>
	/// An element that describes a region within a page area eligible for receiving content.
	/// </summary>
	public class contentArea : area_Set
	{
		public contentArea() : base("contentArea") { }

		public measurement h
		{
			set
			{
				this.SetAttribute("h", value);
			}
		}

		public measurement w
		{
			set
			{
				this.SetAttribute("w", value);
			}
		}

		public measurement x
		{
			set
			{
				this.SetAttribute("x", value);
			}
		}

		public measurement y
		{
			set
			{
				this.SetAttribute("y", value);
			}
		}

		protected desc _desc;

		public desc desc
		{
			get
			{
				if (_desc == null)
				{
					_desc = new desc();
					this.AddChild(_desc);
				}
				return _desc;
			}
			set
			{
				this.RemoveChild(_desc);
				_desc = value;
				this.AddChild(_desc);
			}
		}

	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -