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

📄 draw.cs

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

namespace AnotherPDFLib.XFA
{
	/// <summary>
	/// A container element that contains non-interactive data content.
	/// </summary>
	public class draw : container
	{
		public draw() : base("draw") { }

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

		protected caption _caption;

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

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

		protected font _font;

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

		protected ui _ui;

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

		protected value _value;

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

	}
}

⌨️ 快捷键说明

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