C#Excel Interop:如何设置单元格的高度和宽度(以像素为单位)?

时间:2017-07-25 09:41:52

标签: c# office-interop com-interop excel-interop

我不会故意在这个问题中发布任何代码,因为不需要回答这个问题,由于某些原因我需要通过像素值而不是标准{{1}来设置工作表中单元格的高度和宽度接受标准值。 如何通过像素成功设置单元格的高度和宽度?谢谢。

1 个答案:

答案 0 :(得分:3)

公式:

pixels = points * DPI / 72

可以改为:

points = pixels / DPI * 72

这样您可以使用像素设置行高。

get the DPI in C# see this