csharp interop excel:如何访问像 "accounting formatting" 这样的预格式化样式?
csharp interop excel: how to accessing to pre-formatted styles like "accounting formatting"?
如何使用 Excel Interop 在 c# 中访问像 "accounting formatting" 这样的预格式化样式?请
table.ListColumns["MONTANTS"].DataBodyRange.NumberFormatLocal = "# ##0,00 €";
table.ListColumns["MONTANTS"].DataBodyRange.NumberFormat = InteropExcel. ENUM ?
我正在寻找集合 table.ListColumns["MONTANTS"].DataBodyRange.NumberFormat 到 "accounting format"
我没有测试过这个。
根据this article,只需使用:
table.ListColumns["MONTANTS"].DataBodyRange.NumberFormatLocal = "Accounting";
The number format is specified using the same format codes displayed on the Number tab of the Format Cells dialog box. You can use a built-in number format, for example "General".
我想你可以使用所有内置格式来方便 enum
。
如何使用 Excel Interop 在 c# 中访问像 "accounting formatting" 这样的预格式化样式?请
table.ListColumns["MONTANTS"].DataBodyRange.NumberFormatLocal = "# ##0,00 €";
table.ListColumns["MONTANTS"].DataBodyRange.NumberFormat = InteropExcel. ENUM ?
我正在寻找集合 table.ListColumns["MONTANTS"].DataBodyRange.NumberFormat 到 "accounting format"
我没有测试过这个。
根据this article,只需使用:
table.ListColumns["MONTANTS"].DataBodyRange.NumberFormatLocal = "Accounting";
The number format is specified using the same format codes displayed on the Number tab of the Format Cells dialog box. You can use a built-in number format, for example "General".
我想你可以使用所有内置格式来方便 enum
。