formula.cs

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

CS
24
字号
using System;

namespace Microsoft.Fawvw.Components.NExcel.Read.Biff
{
	
	/// <summary> Interface which is used for copying formulas from a read only
	/// to a writable spreadsheet
	/// </summary>
	public interface Formula : Cell
		{
			/// <summary> Gets the raw bytes for the formula.  This will include the
			/// parsed tokens array
			/// 
			/// </summary>
			/// <returns> the raw record data
			/// </returns>
			sbyte[] FormulaData
			{
				get;
				
			}
		}
}

⌨️ 快捷键说明

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