예제 #1
0
파일: Anchor.cs 프로젝트: bg0jr/Maui
 public static Anchor ForColumn( ICellLocator col )
 {
     return new Anchor( null, col );
 }
예제 #2
0
파일: Anchor.cs 프로젝트: bg0jr/Maui
 public static Anchor ForRow( ICellLocator row )
 {
     return new Anchor( row, null );
 }
예제 #3
0
파일: Anchor.cs 프로젝트: bg0jr/Maui
 protected Anchor( ICellLocator row, ICellLocator col )
 {
     Row = row;
     Column = col;
 }
예제 #4
0
파일: Anchor.cs 프로젝트: bg0jr/Maui
 public static Anchor ForCell( ICellLocator row, ICellLocator col )
 {
     return new Anchor( row, col );
 }
예제 #5
0
 public static Anchor ForCell(ICellLocator row, ICellLocator col)
 {
     return(new Anchor(row, col));
 }
예제 #6
0
 public static Anchor ForColumn(ICellLocator col)
 {
     return(new Anchor(null, col));
 }
예제 #7
0
 public static Anchor ForRow(ICellLocator row)
 {
     return(new Anchor(row, null));
 }
예제 #8
0
 protected Anchor(ICellLocator row, ICellLocator col)
 {
     Row    = row;
     Column = col;
 }
예제 #9
0
 private Anchor(ICellLocator row, ICellLocator col)
 {
     Row    = row;
     Column = col;
 }