找回密码
 立即注册

QQ登录

只需一步,快速开始

mm640803

注册会员

25

主题

41

帖子

154

积分

注册会员

积分
154

活字格认证

mm640803
注册会员   /  发表于:2014-12-10 15:25  /   查看:5816  /  回复:3
spread for silverlight 8.0版本使用打印方法报错,错误为未将对象引用设置到对象示例。可否给一个打印的demo。同时问下有没有spread for silverlight  8.0中文版本的帮助文档

3 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2014-12-10 17:32:00
沙发
回复 1楼mm640803的帖子

抱歉,目前还没有提供中文版帮助文档,英文帮助文档在线链接:
http://helpcentral.componentone. ... light/webframe.html

在线打印示例:
http://demos.componentone.com/sp ... plorer/#Print/Print
回复 使用道具 举报
mm640803
注册会员   /  发表于:2014-12-10 17:36:00
板凳
回复 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 = &quotage &amp 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();
        }

看下是否有问题,为什么会报错
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2014-12-11 10:56:00
地板
回复 3楼mm640803的帖子

请在工程中添加如图DLL引用:
print.png

原因是在打印时我们会进行序列化和反序列化的工作。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部