Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
210
Access cell value based on column name instead of index on a worksheetrow object
posted

Using Infragistics.Documents.Excel.V16.1 Workbook, where in need to read a cell value based on the column name instead of the index value.

Currently, getting the cell values as below:

row.Cells[2].GetText()l

is there any way i could get in row.Cells["<ColName>"].GetText(), have gone through  the documentation , but couldn't find any. 

Other thing is get all the cell values of a particular row, i.e, on a worksheetrow object  in a single statement , instead of processing it through cell by cell using a loop.