コード例 #1
0
 public Report(string name, string width)
 {
     m_Name    = name;
     m_Width   = width;
     m_Columns = new ReportColumnCollection();
     m_Items   = new ReportItemCollection();
 }
コード例 #2
0
 /// <summary>
 /// Default constructor for enumerator.
 /// </summary>
 /// <param name="collection">Instance of the collection to enumerate.</param>
 internal ReportColumnCollectionEnumerator(ReportColumnCollection collection)
 {
     _index      = -1;
     _collection = collection;
 }