C#: Getting a cell's value with Excel.interop

前端 未结 3 2017
不知归路
不知归路 2021-01-13 21:29

I want to get the value of a cell from an excel file with a software in C#; NOT THE TEXT, because the text depend of the size of the column, and I must not change it myself,

3条回答
  •  北海茫月
    2021-01-13 21:54

    From this post on MSDN it looks like you would want something like:

    var cellRangeValue = rng_ResolutionCell.get_Value(System.Type.Missing);
    

提交回复
热议问题