📄 basesection.cs
字号:
//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Runtime Version: 1.1.4322.2032
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
/// <summary>
/// This Class is the BaseClass for all ReportSections
/// </summary>
/// <remarks>
/// created by - Forstmeier Helmut
/// created on - 01.09.2005 13:12:32
/// </remarks>
namespace SharpReportCore {
public class BaseSection : SharpReportCore.BaseReportObject {
private ReportItemCollection items;
public BaseSection(): this("") {
}
#region System.IDisposable interface implementation
public void Dispose() {
for (int i = 0;i < items.Count ;i ++ ){
((BaseReportItem)items[i]).Dispose();
}
}
#endregion
#region properties
public BaseSection (string sectionName) :base(){
this.Name = sectionName;
items = new ReportItemCollection();
}
[Browsable(false)]
public ReportItemCollection Items{
get {
return items;
}
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -