예제 #1
0
 public RMatrix(DataTable _sourceDataTable, IList <ReportColumn> _reportDataColumns,
                ReportTableGroupList _reportTableGroups)
     : this()
 {
     this.SourceDataTable   = _sourceDataTable;
     this.DataSetName       = RDataSet.GetDataSetName(_sourceDataTable);
     this.reportDataColumns = _reportDataColumns;
     this.reportTableGroups = _reportTableGroups;
 }
예제 #2
0
 public RTable(DataTable _sourceDataTable, IList <ReportColumn> _reportDataColumns,
               ReportTableGroupList _reportTableGroups, Size _rowHeight)
     : this()
 {
     this.SourceDataTable   = _sourceDataTable;
     this.DataSetName       = RDataSet.GetDataSetName(_sourceDataTable);
     this.reportDataColumns = _reportDataColumns;
     this.reportTableGroups = _reportTableGroups;
     this.rowHeight         = _rowHeight;
 }