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

📄 blankcell.cs

📁 Excel的操作,其中可以读取及写入Excel 文件
💻 CS
字号:
using System;

using Microsoft.Fawvw.Components.NExcel.Biff;

namespace Microsoft.Fawvw.Components.NExcel.Read.Biff
{
	
	/// <summary> A blank cell.  Despite the fact that this cell has no contents, it
	/// has formatting information applied to it
	/// </summary>
	public class BlankCell:CellValue
	{
		/// <summary> Returns the contents of this cell as an empty string
		/// 
		/// </summary>
		/// <returns> a empty string ""
		/// </returns>
		virtual public string Contents
		{
			get
			{
				return "";
			}
			
		}
		/// <summary> Accessor for the cell type
		/// 
		/// </summary>
		/// <returns> the cell type
		/// </returns>
		virtual public CellType Type
		{
			get
			{
				return CellType.EMPTY;
			}
			
		}
		/// <summary> Constructs this object from the raw data
		/// 
		/// </summary>
		/// <param name="t">the raw data
		/// </param>
		/// <param name="fr">the available formats
		/// </param>
		/// <param name="si">the sheet
		/// </param>
		internal BlankCell(Record t, FormattingRecords fr, SheetImpl si):base(t, fr, si)
		{
		}
	}
}

⌨️ 快捷键说明

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