ExcelDna.Integration.ExcelReference.GetValue C# (CSharp) 메소드

GetValue() 공개 메소드

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

Usage Example

예제 #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