ihierarchyinterfaces.cs

来自「SharpDevelop2.0.0 c#开发免费工具」· CS 代码 · 共 38 行

CS
38
字号
/*
 * Created by SharpDevelop.
 * User: Forstmeier Helmut
 * Date: 30.11.2005
 * Time: 13:51
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */
//ToDo with NET2.0 change this Interface to the one provided by NET2.0
using System;
using System.Collections;


namespace SharpReportCore {
	
	public interface IHierarchyData{
		
		SharpIndexCollection GetChildren {
			get;
		}

		bool HasChildren {
			get;
		}
		
		object Item {
			get;
		}
		string Path {
			get;
		}
		
		string Type {
			get;
		}
	}
}

⌨️ 快捷键说明

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