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(); }
public void AddMiddleBorder(int boxX, int boxWidth, VirtualScreenRow row) { row.GetCell(boxX).AddVertical(); row.GetCell(boxX + boxWidth - 1).AddVertical(); }