コード例 #1
0
 public void fillDataArrayToTable(Table t, NoValueDisplay sign)
 {
     noValueSign = sign;
     for (int row = 0; row < rowNum; row++)
     {
         TableRow newTableRow = new TableRow();
         newTableRow.Cells.Add(getTab(row));
         for (int col = 0; col < colNum; col++)
         {
             newTableRow.Cells.Add(getCell(row, col));
         }
         t.Rows.Add(newTableRow);
     }
 }
コード例 #2
0
ファイル: FillTable.cs プロジェクト: friends/LibraryAssistant
 public void fillDataArrayToTable(Table t,NoValueDisplay sign)
 {
     noValueSign = sign;
     for (int row = 0; row < rowNum; row++)
     {
         TableRow newTableRow = new TableRow();
         newTableRow.Cells.Add(getTab(row));
         for (int col = 0; col < colNum; col++)
         {
             newTableRow.Cells.Add(getCell(row, col));
         }
         t.Rows.Add(newTableRow);
     }
 }