我正在尝试使用APOSE.WORDS-CLOUD SDK将docx文件转换为pdf。但是我在Document类中遇到以下错误 Document doc = new Document(“ D:\ Aspose \ Template.docx”); 错误:“文档”不包含带有1个参数的构造函数
P.S请引导我获得使用aspose.words.cloud SDK的正确文档/手册
答案 0 :(得分:0)
@MetorGeek
.NET SDK aspose-words-cloud中没有function assembleCellFormula(){
var ss=SpreadsheetApp.getActive();
var sh=ss.getActiveSheet();
var col2=sh.getRange('B1:B10');
var col11=sh.getRange('L1:L10');
var vA=col2.getValues();
var vB=col11.getValues();
for(var i=0;i<vA.length;i++){
vB[i][0]=Utilities.formatString('=ImportHtml("%s","table",4)',vA[i][0]);
}
col11.setValues(vB);
}
类。您可以使用以下示例将Word文档转换为PDF:
Document
请查看Converting a Document文档部分以获取有关转换API的详细说明。