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

📄 area.cs

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

namespace AnotherPDFLib.XFA
{
	/// <summary>
	/// A container representing a geographical grouping of other containers.
	/// </summary>
	public class area : area_Set
	{
		public area() : base("area") { }

		public int colSpan
		{
			set
			{
				this.SetAttribute("colSpan", value);
			}
		}

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

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

		public void Add(area area)
		{
			this.AddChild(area);
		}

		public void Add(subformSet subformSet)
		{
			this.AddChild(subformSet);
		}

		public void Add(exObject exObject)
		{
			this.AddChild(exObject);
		}

		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);
			}
		}

		public void Add(container container)
		{
			this.AddChild(container);
		}

	}
}

⌨️ 快捷键说明

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