示例#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;
 }