public TableHeaderFooterRows(Table owner, bool repeatOnNewPage, TableRowList rowDefs, TableRowInstance[] rowInstances)
     : base(owner, rowDefs, rowInstances)
 {
     this.m_repeatOnNewPage = repeatOnNewPage;
 }
 internal TableDetailRowCollection(Table owner, TableRowList rowDefs, TableRowInstance[] rowInstances, TableDetailInstance detailInstance)
     : base(owner, rowDefs, rowInstances)
 {
     m_detailInstance = detailInstance;
 }
Exemplo n.º 3
0
 public TableDetailRowCollection(Table owner, TableRowList rowDefs, TableRowInstance[] rowInstances, TableDetailInstance detailInstance)
     : base(owner, rowDefs, rowInstances)
 {
     this.m_detailInstance = detailInstance;
 }
 public TableRowCollection(Table owner, TableRowList rowDefs, TableRowInstance[] rowInstances)
 {
     this.m_owner        = owner;
     this.m_rowInstances = rowInstances;
     this.m_rowDefs      = rowDefs;
 }
Exemplo n.º 5
0
 internal TableRowCollection(Table owner, TableRowList rowDefs, TableRowInstance[] rowInstances)
 {
     m_owner        = owner;
     m_rowInstances = rowInstances;
     m_rowDefs      = rowDefs;
 }