8.0版本试用打印方法报错
spread for silverlight 8.0版本使用打印方法报错,错误为未将对象引用设置到对象示例。可否给一个打印的demo。同时问下有没有spread for silverlight8.0中文版本的帮助文档 回复 1楼mm640803的帖子抱歉,目前还没有提供中文版帮助文档,英文帮助文档在线链接:
http://helpcentral.componentone.com/NetHelp/SpreadSilverlight/webframe.html
在线打印示例:
http://demos.componentone.com/spread/silverlight/controlexplorer/#Print/Print 回复 2楼iceman的帖子
我的代码如下
public void PrintExcle()
{
PrintInfo printInfo = new PrintInfo();
printInfo.ShowBorder = false;
printInfo.FitPagesWide = 1;
printInfo.RowStart = -1;
printInfo.ColumnStart = -1;
printInfo.RowEnd = -1;
printInfo.ColumnEnd = -1;
printInfo.FitPagesWide = -1;
printInfo.FitPagesTall = -1;
printInfo.FooterCenter = "Page &P of &N";
printInfo.ShowRowHeader = VisibilityType.Show;
printInfo.ShowColumnHeader = VisibilityType.Show;
printInfo.FitPagesWide = -1;
printInfo.FitPagesTall = -1;
printInfo.ShowGridLine = true;
foreach (var item in this.gcSpreadSheet1.Sheets)
{
item.PrintInfo = null;
item.PrintInfo = printInfo;
}
this.gcSpreadSheet1.Print();
}
看下是否有问题,为什么会报错 回复 3楼mm640803的帖子
请在工程中添加如图DLL引用:
原因是在打印时我们会进行序列化和反序列化的工作。
页:
[1]