示例#1
0
 public Cell(Font font)
 {
     this.font = font;
     this.border = new Border();
 }
示例#2
0
 public Cell(Font font, String text)
 {
     this.font = font;
     this.text = text;
     this.border = new Border();
 }
示例#3
0
 public void SetBorder(Border border)
 {
     this.border = border;
 }