码迷,mamicode.com
首页 > 其他好文 > 详细

OfficeControl使用PDFCreator另存为PDF文件

时间:2017-04-29 13:44:45      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:bool   nbsp   pdf   rom   名称   文本   security   rmi   tor   

procedure TForm3.btnSavePdfClick(Sender: TObject);
begin
{参数:
名称 必选/可选 数据类型 说明
FileName 必选 string 另存为PDF的文件名
PromptSelect 可选 bool 是否提示用户选择
SheetName 可选 string EXCEL工作表名称
IsShowMsg 可选 bool 保存成功是否显示提示
IsUseSecurity 可选 bool 是否对PDF文件使用安全特性
OwnerPass 可选 string PDF文件的所有者口令
IsPermitPrint 可选 bool PDF文件是否可以被打印
IsPermitCopy 可选 bool PDF文件是否可以被拷贝文本
}
  if OfficeControl1.IsPDFCreatorInstalled then begin
    if saveDialog1.Execute then
      OfficeControl1.SaveAsPDFFile(savedialog1.FileName, false, ‘‘, false, false, ‘‘, true, true);
  end else
    showmessage(‘is not install pdfcreator‘);
  end;

end;

OfficeControl使用PDFCreator另存为PDF文件

标签:bool   nbsp   pdf   rom   名称   文本   security   rmi   tor   

原文地址:http://www.cnblogs.com/zsfishman/p/6784923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!