ExcelDna.Integration.ExcelReference.GetValue C# (CSharp) Method

GetValue() public method

public GetValue ( ) : object
return object
        public object GetValue()
        {
            return XlCall.Excel(XlCall.xlCoerce, this);
        }

Usage Example

Exemplo 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( );
 }
All Usage Examples Of ExcelDna.Integration.ExcelReference::GetValue