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

📄 editcontrol.cs

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

namespace AnotherPDFLib.XFA
{
	public abstract class editcontrol : control
	{
		public editcontrol(string name) : base(name) { }

		protected margin _margin;

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

		protected border _border;

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

	}
}

⌨️ 快捷键说明

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