人生本是一个不断学习的过程,在这个过程中,图老师就是你们的好帮手,下面分享的delphi编程实现在Word插入字符懂设计的网友们快点来了解吧!
【 tulaoshi.com - 编程语言 】
现在的文档很多都是用Word软件来编辑的,但如果你想在程序中把某些字符插入到Word文档中,那么下面的程序帮你忙:
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)
procedure TForm1.Button1Click(Sender: Tobject);var MSWord: Variant;beginMSWord := CreateOLEObject(Word.Application);//连接WordMSWord.Documents.Open(FileName:=d:test.doc, ReadOnly:=True);//打开外部Word文档MSWord.Visible := 1;//是否显示文件编辑MSWord.ActiveDocument.Range(Start:=0, End:=0);//开始改变的启止位置MSWord.ActiveDocument.Range.InsertAfter(Text:=Title);//在Word中增加字符TitleMSWord.ActiveDocument.Range.InsertParagraphAfter;MSWord.ActiveDocument.Range.Font.Name := Arial;//字体名称MSWord.ActiveDocument.Range.Font.Size := 24;//字体大小end;(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)
来源:http://www.tulaoshi.com/n/20160219/1616065.html
看过《delphi编程实现在Word插入字符》的人还看了以下文章 更多>>