示例#1
0
 public void CellBorder(IMatrix m, int row, int col)
 {
     if (row == r || col == c)
     {
     }
     else
     {
         drawer.CellBorder(this, row, col);
     }
 }
 public void CellBorder(IMatrix m, int row, int col)
 {
     drawer.CellBorder(this, getRow(m, row), col);
 }
 public void CellBorder(IMatrix m, int row, int col)
 {
     d.CellBorder(this, row, col);
 }
示例#4
0
 public void CellBorder(IMatrix m, int row, int col)
 {
     drawer.CellBorder(this, row, getColumn(m, col));
 }