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