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

📄 formula.cs

📁 Excel的操作,其中可以读取及写入Excel 文件
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -