예제 #1
0
 public void AddBottomBorder(int boxX, int boxWidth, VirtualScreenRow row)
 {
     row.GetCell(boxX).AddLowerLeftCorner();
     for (int i = boxX + 1; i < boxX + boxWidth - 1; i++)
     {
         row.GetCell(i).AddHorizontal();
     }
     row.GetCell(boxX + boxWidth - 1).AddLowerRightCorner();
 }
예제 #2
0
 public void AddMiddleBorder(int boxX, int boxWidth, VirtualScreenRow row)
 {
     row.GetCell(boxX).AddVertical();
     row.GetCell(boxX + boxWidth - 1).AddVertical();
 }