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

📄 calculate.cs

📁 PDF文件格式解析库源代码
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace AnotherPDFLib.XFA
{
	/// <summary>
	/// An automation element that controls the calculation of it's container's value.
	/// </summary>
	public class calculate : element_id_extras
	{
		public calculate() : base("calculate") { }

		public overriding @override
		{
			set
			{
				this.SetAttribute("override", value);
			}
		}

		protected message _message;

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

		protected script _script;

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

	}
}

⌨️ 快捷键说明

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