您现在的位置: 爱51代码网 >> 范文 >> 文章正文
C# 中InlineShapes.AddPicture的Range参数如何使用

protected void InsertPtctureToExcel()
        {
            Word.Application app = null;
            Word.Document doc = null;
            try
            {
                object oMissing = System.Reflection.Missing.Value;
                //图片地址
                string fileName =Server.MapPath("photo.jpg");
                object linkToFile = false;
                object saveWithDocument = true;

                app = new Word.Application();
                doc = app.Documents.Add();
                Word.Table table = doc.Tables.Add(app.Selection.Range, 2, 2);
                table.Columns[1].Width = 100f;
                table.Columns[2].Width = 125f;
                table.Cell(1, 1).Range.Text = "姓名";
                table.Cell(1, 2).Range.Text = "张三";
                table.Cell(2,1).Range.Text = "照片";
                table.Cell(2, 2).Select();

                object range = app.Selection.Range;
                Word.InlineShape shape =  app.ActiveDocument.InlineShapes.AddPicture(fileName, ref linkToFile, ref saveWithDocument, ref range);
                shape.Width = 100f;//图片宽度
                shape.Height = 120f;//图片高度
                shape.ConvertToShape().WrapFormat.Type = Word.WdWrapType.wdWrapSquare;//四周环绕的方式
                string newFile = DateTime.Now.ToString("yyyyMMddHHmmssss") + ".doc";
                string physicNewFile = Server.MapPath(newFile);
                doc.SaveAs(physicNewFile);
            }
            catch (Exception ex)
            {

            }
            finally
            {
                if (doc != null)
                {
                    doc.Close();//关闭文档
                }
                if (app != null)
                {
                    app.Quit();//退出应用程序
                }
            }
        }

  • 上一篇文章:

  • 下一篇文章: 没有了
  • 最新文章 热点文章 相关文章
    GIS用百度行政区域的经纬度直接画
    不小心卸载了.net 4 extend,vs2
    C#byte【】里的数转换成string时
    C#的session取不到值
    java如何判断一个字符串里的数字
    随机找出24个不一样的字,在把一
    java怎么实现html转为pdf
    lotus数据列表文档个数如何实时统
    lotus代理中LS如何将字符串保存到
    在lotus BS系统里怎样方便实现统
    GIS用百度行政区域的经纬度直接画
    不小心卸载了.net 4 extend,vs2
    C#byte【】里的数转换成string时
    C#的session取不到值
    java如何判断一个字符串里的数字
    java怎么实现html转为pdf
    lotus数据列表文档个数如何实时统
    在lotus BS系统里怎样方便实现统
    undefined reference timer_crea
    linux文件/usr/lib破坏了,还原后
    pdf2flash将pdf转为swf时本地
    代码中如何返回IEnumerator
    C# 代码如何在Excel里面实现
    C#input输入框最后一位数字无
    VS2010如何让多个项目共享文
    oledb如何远程读写excel2003
    C#如何开发NPAPI
    asp.net实现打开ftp站点并下
    LINQ to entity 返回多个结果
    SMTP 服务器要求安全连接或客
     



    设为首页 | 加入收藏 | 网站地图 | 友情链接 |