CorelDRAW.Application cdr = new CorelDRAW.Application(); cdr.OpenDocument(@"G:\picture\0608.cdr", 1); cdr.ActiveDocument.PublishToPDF(@"G:\picture\0608newImage.pdf"); cdr.ActiveDocument.Close();
cdr.Quit();
方法VGCore.IVGDocument.Close()和非方法“VGCore.DIVGDocumentEvents Event.Close“之间存在二义性。将使用方法组。
Close()方法警告如上。请问怎么消除?
((VGCore.IVGDocument)cdr.ActiveDocument).Close();
((VGCore.IVGApplication)cdr).Quit();