コード例 #1
0
ファイル: Template.cs プロジェクト: rmsphd/HPattern
 private static IBaseCollection<RowElement> GetRowsAllTabs(IBaseCollection<TabFormElement> tabs, TransactionElement trni)
 {
     IBaseCollection<RowElement> rows = new BaseCollection<RowElement>();
     if (tabs != null)
     {
         foreach (TabFormElement tabe in tabs)
         {
             foreach (RowElement row in tabe.Rows)
                 rows.Add(row);
         }
     }
     return rows;
 }