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

📄 filespecification.cs

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

namespace AnotherPDFLib
{
	public partial class FileSpecification : PdfDictionary
	{
		public FileSpecification() : base("Filespec")
		{
		}

		/// <summary>
		/// The name of the file system to be used to interpret this file specification.
		/// </summary>
		public string FileSystem
		{
			get
			{
				PdfName filesystem = this["FS"] as PdfName;
				if (filesystem != null)
				{
					return filesystem.Value;
				}
				return String.Empty;
			}
			set
			{
				this["FS"] = new PdfName(value);
			}
		}

		/// <summary>
		/// A file specification string or a uniform resource locator.
		/// </summary>
		public string FilePath
		{
			get
			{
				PdfString filepath = this["F"] as PdfString;
				if (filepath != null)
				{
					return filepath.Value;
				}
				return String.Empty;
			}
			set
			{
				this["F"] = new PdfString(value);
			}
		}

		public PdfDictionary EmbeddedFile
		{
			get
			{
				return this["EF"] as PdfDictionary;
			}
			set
			{
				this["EF"] = value;
			}
		}

	}
}

⌨️ 快捷键说明

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