Example #1
0
File: Anchor.cs Project: bg0jr/Maui
 public static Anchor ForColumn( ICellLocator col )
 {
     return new Anchor( null, col );
 }
Example #2
0
File: Anchor.cs Project: bg0jr/Maui
 public static Anchor ForRow( ICellLocator row )
 {
     return new Anchor( row, null );
 }
Example #3
0
File: Anchor.cs Project: bg0jr/Maui
 protected Anchor( ICellLocator row, ICellLocator col )
 {
     Row = row;
     Column = col;
 }
Example #4
0
File: Anchor.cs Project: bg0jr/Maui
 public static Anchor ForCell( ICellLocator row, ICellLocator col )
 {
     return new Anchor( row, col );
 }
Example #5
0
 public static Anchor ForCell(ICellLocator row, ICellLocator col)
 {
     return(new Anchor(row, col));
 }
Example #6
0
 public static Anchor ForColumn(ICellLocator col)
 {
     return(new Anchor(null, col));
 }
Example #7
0
 public static Anchor ForRow(ICellLocator row)
 {
     return(new Anchor(row, null));
 }
Example #8
0
 protected Anchor(ICellLocator row, ICellLocator col)
 {
     Row    = row;
     Column = col;
 }
Example #9
0
 private Anchor(ICellLocator row, ICellLocator col)
 {
     Row    = row;
     Column = col;
 }