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

📄 embededfilestream.cs

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

namespace AnotherPDFLib
{
	public partial class EmbededFileStream : PdfStream
	{
		public EmbededFileStream() : base("EmbeddedFile")
		{
		}

		/// <summary>
		/// The subtype of the embedded file. The value must be a first-class name. Names without a registered prefix must conform to the MIME media type names.
		/// </summary>
		public string Subtype
		{
			get
			{
				PdfName subtype = this["Subtype"] as PdfName;
				if (subtype != null)
				{
					return subtype.Value;
				}
				return String.Empty;
			}
			set
			{
				this["Subtype"] = new PdfName(value);
			}
		}

		/// <summary>
		/// An embedded file parameter dictionary containing additional, filespecific information.
		/// </summary>
		public EmbeddedFileParameter Params
		{
			get
			{
				return this["Params"] as EmbeddedFileParameter;
			}
			set
			{
				this["Params"] = value;
			}
		}

	}
}

⌨️ 快捷键说明

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