4

我发现了一些使用 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 一起使用)。这有关系吗?

你能给我解释一下吗?谢谢你。

4

2 回答 2

8

您必须将对象转换为Range.

Range 接口/对象包含您指定的单元格或范围的所有样式和值信息。

一些例子:

((Excel.Range)ws.Cells[r, c]).NumberFormat = format;
((Excel.Range)ws.Cells[r, c]).Value2 = cellVal;
((Excel.Range)ws.Cells[r, c]).Interior.Color = ColorTranslator.ToOle(Color.Red);
((Excel.Range)ws.Cells[r, c]).Style.Name = "Normal"

等等等等等等。

有一个链接: https ://docs.microsoft.com/en-us/office/vba/api/Excel.Range.Style

于 2013-04-10T13:04:24.493 回答
0

您可能还想查看stackoverflow.com/questions/15366340/,其中包括导出到 excel 时的单元格格式。

于 2013-04-11T16:29:09.523 回答