public static Anchor ForColumn( ICellLocator col ) { return new Anchor( null, col ); }
public static Anchor ForRow( ICellLocator row ) { return new Anchor( row, null ); }
protected Anchor( ICellLocator row, ICellLocator col ) { Row = row; Column = col; }
public static Anchor ForCell( ICellLocator row, ICellLocator col ) { return new Anchor( row, col ); }
public static Anchor ForCell(ICellLocator row, ICellLocator col) { return(new Anchor(row, col)); }
public static Anchor ForColumn(ICellLocator col) { return(new Anchor(null, col)); }
public static Anchor ForRow(ICellLocator row) { return(new Anchor(row, null)); }
protected Anchor(ICellLocator row, ICellLocator col) { Row = row; Column = col; }
private Anchor(ICellLocator row, ICellLocator col) { Row = row; Column = col; }