Word 插入图片

//插入图片  
  if   (this.openfiledialog1.showdialog()   ==   dialogresult.ok)  
  {  
  string   filename0   =   openfiledialog1.filename;  
  object   filename1   =   openfiledialog1.filename;  
  object   readonly   =   false;  
  object   isvisible   =   true;  
   
  object   missing   =   system.reflection.missing.value;  
   
  word.applicationclass   wordapp=new   word.applicationclass();  
  wordapp.visible   =   true;  
   
       
   
  //打开word文档  
  word.document   adoc   =   wordapp.documents.open(ref   filename1,   ref   missing,ref   readonly,    
  ref   missing,   ref   missing,     ref   missing,   ref   missing,   ref   missing,   ref   missing,   ref   missing,   ref   missing,   ref   isvisible);  
                         
   
  adoc.activate();  
   
  //插入图片  
   
   
                      object   a=true;  
  object   b=true;  
  //定义位置  
  object   left=100;object   top=150;  
  object   width=400;  
  object   height=450;  
   
                      adoc.shapes.addpicture("f:\\1.jpg",ref   a,ref   b,ref   left,ref   top,ref     width,ref     height,ref   missing);  
                                      adoc.save();  
  adoc.close(ref   missing,ref   missing,ref   missing);  
      wordapp.quit(ref   a,ref   missing,ref   missing);  
   
  }  

你可能感兴趣的:(word)