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

📄 textreportcollection.cs

📁 ASP.NET 建立和发布可自定义 Web 报表的指南
💻 CS
字号:
using System;
using System.Data;
using System.Configuration;
using System.Collections;

namespace ASPNET.StarterKit.Reports.Components
{
	//*********************************************************************
	//
	// This class inherits from the ArrayList class.  This 'thin class' 
	// will hold the result values from the stored procedure queries
	// run in the TextReport class.
	//
	//*********************************************************************

	public class TextReportCollection : ArrayList
	{
		public enum TextReportFields
		{
			// Put new enumerations here
			//		Since there is no sorting in this report, there 
			//		are no enumerations currently implemetned
		}
		
		public void Sort(TextReportFields sortField, bool isAscending)
		{
			// Implement Sort method here
			//		There is currently no sorting in the Text report
		}

		// Place IComparer implementations here
		//		 There is currently no sorting in the Text report, and
		//		 therefore no need for any IComparer implementations
	}
}

⌨️ 快捷键说明

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