我发现了一些使用 Style 属性的代码,Microsoft.Office.Interop.Excel.Worksheet.Cells[x,y]
但它在我的 Visual Studo 代码编辑器中被视为对象:
Workbook wb = new Application.Workbooks.Add(XlWBATemplate.xlWBATWorksheet);
Worksheet ws = wb.Sheets[1];
ws.Cells[x,y] is simply treated as an object so how can I use its Style property?
我正在使用 Microsoft Excel 15.0 对象库(与 Microsoft Office 2013 一起使用)。这有关系吗?
你能给我解释一下吗?谢谢你。