找回密码
 立即注册

QQ登录

只需一步,快速开始

gxfmmm

注册会员

1

主题

4

帖子

9

积分

注册会员

积分
9

活字格认证

最新发帖
gxfmmm
注册会员   /  发表于:2014-10-11 10:57  /   查看:5208  /  回复:1
GrapeCity.ActiveReports.Export.Word.Section.RtfExport word = new GrapeCity.ActiveReports.Export.Word.Section.RtfExport();
               
                System.IO.MemoryStream memStream = new System.IO.MemoryStream();
                Response.ContentType = "application/rtf";

              
                if (!string.IsNullOrEmpty(ls_memonofrom))
                {
                    Response.AppendHeader("Content-Disposition", "inline;filename=" + ls_memonofrom + ".doc");
                }
                else
                {
                    Response.AddHeader("content-disposition", "inline; filename=tenantcfmletter.doc");
                }
                System.Threading.Thread.Sleep(200);

               
                word.Export(docCurrent, memStream);
               
                Response.BinaryWrite(memStream.ToArray());

                Response.End();

1 个回复

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

如果希望导出 line 到 word 中需要设置EnableShapes 为true:

  1.             GrapeCity.ActiveReports.Export.Word.Section.RtfExport word = new GrapeCity.ActiveReports.Export.Word.Section.RtfExport();
  2.             word.EnableShapes = true;
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部