GetValue() public method

public GetValue ( ) : object
return object
Esempio n. 1
1
 public object GetCell( int row, int col )
 {
     // TODO: optimise to not create an ExcelReference on every visit.
     ExcelReference xlref = new ExcelReference( row, row, col, col, "s2cfg" );
     return xlref.GetValue( );
 }
 public override object GetValue()
 {
     return(excelReference.GetValue());
 }