PDF文件格式解析库源代码

源代码在线查看: script.cs

软件大小: 635 K
上传用户: bt9
关键词: 文件格式 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				using System;
				using System.Collections.Generic;
				using System.Text;
				
				namespace AnotherPDFLib.XFA
				{
					/// 
					/// An automation element that contains a script.
					/// 
					public class script : eventAction
					{
						public script() : base("script") { }
				
						public string binding
						{
							set
							{
								this.SetAttribute("binding", value);
							}
						}
				
						public string contentType
						{
							set
							{
								this.SetAttribute("contentType", value);
							}
						}
				
						public runAt runAt
						{
							set
							{
								this.SetAttribute("runAt", value);
							}
						}
				
						public bool stateless
						{
							set
							{
								this.SetAttribute("stateless", value);
							}
						}
				
						public string name
						{
							set
							{
								this.SetAttribute("name", value);
							}
						}
				
						public string value
						{
							get
							{
								return this.Value;
							}
							set
							{
								this.Value = value;
							}
						}
				
					}
				}
							

相关资源