1.报错:C# 必须添加对程序集“office, Version=15.0.0.0, ……
在开发环境,右击引用,选“添加引用”,如图 选中红线内容
2.报错:程序集“Microsoft.Office.Interop.Excel”所使用的“office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”版本高于所引用的标识为“office, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”的程序集“office”
卸载包“Microsoft.Office.Interop.Excel.15.0……
安装包“Microsoft.Office.Interop.Excel.14.0.0.1”
3.报错:System.Runtime.InteropServices.COMException:“指定的值超出了范围。”
参数应为:MsoTextOrientation.msoTextOrientationHorizontal
误设置为:Orientation.Horizontal。修正后,排除。
4.新建Shape写法文章来源:https://www.toymoban.com/news/detail-448494.html
Excel.Shapes myShapes = worksheet1.Shapes;
Excel.Shape line= myShapes.AddLine(10, 10, 250, 250);
line.Line.DashStyle = MsoLineDashStyle.msoLineDashDotDot;
line.Line.ForeColor.RGB =(int)Excel.XlRgbColor.rgbBlue;
Excel.Shape shape1=myShapes.AddLabel(MsoTextOrientation.msoTextOrientationHorizontal,100,100,300,30);
shape1.TextFrame.Characters().Text = "simple text";
shape1.Fill.BackColor.RGB =(int)Excel.XlRgbColor.rgbGreenYellow;
shape1.Line.Visible = Microsoft.Office.Core.MsoTriState.msoTrue;
文章来源地址https://www.toymoban.com/news/detail-448494.html
到了这里,关于C# 使用Interop.Excel一些报错的对应的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!