drilldownreportcollection.cs

来自「ASP.NET 建立和发布可自定义 Web 报表的指南」· CS 代码 · 共 30 行

CS
30
字号
using System;
using System.Data;
using System.Configuration;
using System.Collections;

namespace ASPNET.StarterKit.Reports.Components
{
	//*********************************************************************
	//
	//	DrillDownReportCollection Class 
	//
	//  This is a skeleton class for creating sortable collection.
	//
	//*********************************************************************

	public class DrillDownReportCollection : ArrayList 
	{
		public enum DrillDownReportFields
		{
			// Put new enumerations here
		}
			
		public void Sort(DrillDownReportCollection sortField, bool isAscending)
		{
			// Implement Sort method here
		}

		// Place IComparer implementations here
	}
}

⌨️ 快捷键说明

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