示例#1
0
 public Report(string name, string width)
 {
     m_Name    = name;
     m_Width   = width;
     m_Columns = new ReportColumnCollection();
     m_Items   = new ReportItemCollection();
 }
示例#2
0
文件: Report.cs 项目: Crome696/ServUO
 public Report(string name, string width)
 {
     this.m_Name = name;
     this.m_Width = width;
     this.m_Columns = new ReportColumnCollection();
     this.m_Items = new ReportItemCollection();
 }
 /// <summary>
 /// Default constructor for enumerator.
 /// </summary>
 /// <param name="collection">Instance of the collection to enumerate.</param>
 internal ReportColumnCollectionEnumerator(ReportColumnCollection collection)
 {
     this._index      = -1;
     this._collection = collection;
 }
 /// <summary>
 /// Default constructor for enumerator.
 /// </summary>
 /// <param name="collection">Instance of the collection to enumerate.</param>
 internal ReportColumnCollectionEnumerator(ReportColumnCollection collection)
 {
     _index = -1;
     _collection = collection;
 }