Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Winform 应用程序中,我正在从 Excel 工作表中读取数据。
如果数据(即字符串)无效,我必须将其在 Excel 文件中的位置发送给用户(例如 A12)
任何人都可以帮助我,我该怎么做?
如果您正在使用互操作并且具有单元格的行和列,则可以使用以下内容:
Excel.Range range = (Excel.Range)CurrentWorksheetObject.Cells[row, col]; string cellAddress = range.get_AddressLocal(false, false, Excel.XlReferenceStyle.xlA1, Type.Missing, Type.Missing);
然后,您可以将该字符串传递给用户。