paletterecord.cs
来自「Excel的操作,其中可以读取及写入Excel 文件」· CS 代码 · 共 34 行
CS
34 行
using System;
using Microsoft.Fawvw.Components.NExcel.Biff;
namespace Microsoft.Fawvw.Components.NExcel.Read.Biff
{
/// <summary> A password record</summary>
public class PaletteRecord:RecordData
{
/// <summary> Accessor for the binary data - used when copying
///
/// </summary>
/// <returns> the binary data
/// </returns>
virtual public sbyte[] Data
{
get
{
return getRecord().Data;
}
}
/// <summary> Constructor
///
/// </summary>
/// <param name="t">the raw bytes
/// </param>
internal PaletteRecord(Record t):base(t)
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?