コード例 #1
0
ファイル: Cell.cs プロジェクト: pauljs/Justin-Paul-s-Projects
 public Cell(Font font)
 {
     this.font = font;
     this.border = new Border();
 }
コード例 #2
0
ファイル: Cell.cs プロジェクト: pauljs/Justin-Paul-s-Projects
 public Cell(Font font, String text)
 {
     this.font = font;
     this.text = text;
     this.border = new Border();
 }
コード例 #3
0
ファイル: Cell.cs プロジェクト: pauljs/Justin-Paul-s-Projects
 public void SetBorder(Border border)
 {
     this.border = border;
 }