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