plsrecord.cs

来自「Excel的操作,其中可以读取及写入Excel 文件」· CS 代码 · 共 34 行

CS
34
字号
using System;

using Microsoft.Fawvw.Components.NExcel.Biff;

namespace Microsoft.Fawvw.Components.NExcel.Read.Biff
{
	
	/// <summary> The environment specific print record</summary>
	public class PLSRecord:RecordData
	{
		/// <summary> Gets the data
		/// 
		/// </summary>
		/// <returns> the binary data
		/// </returns>
		virtual public sbyte[] Data
		{
			get
			{
				return getRecord().Data;
			}
			
		}
		/// <summary> Constructs this object from the raw data
		/// 
		/// </summary>
		/// <param name="r">the raw data
		/// </param>
		public PLSRecord(Record r):base(r)
		{
		}
	}
}

⌨️ 快捷键说明

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