Beispiel #1
0
 public static Anchor ForColumn( ICellLocator col )
 {
     return new Anchor( null, col );
 }
Beispiel #2
0
 public static Anchor ForRow( ICellLocator row )
 {
     return new Anchor( row, null );
 }
Beispiel #3
0
 protected Anchor( ICellLocator row, ICellLocator col )
 {
     Row = row;
     Column = col;
 }
Beispiel #4
0
 public static Anchor ForCell( ICellLocator row, ICellLocator col )
 {
     return new Anchor( row, col );
 }
Beispiel #5
0
 public static Anchor ForCell(ICellLocator row, ICellLocator col)
 {
     return(new Anchor(row, col));
 }
Beispiel #6
0
 public static Anchor ForColumn(ICellLocator col)
 {
     return(new Anchor(null, col));
 }
Beispiel #7
0
 public static Anchor ForRow(ICellLocator row)
 {
     return(new Anchor(row, null));
 }
Beispiel #8
0
 protected Anchor(ICellLocator row, ICellLocator col)
 {
     Row    = row;
     Column = col;
 }
Beispiel #9
0
 private Anchor(ICellLocator row, ICellLocator col)
 {
     Row    = row;
     Column = col;
 }