Can Aspose.Words open Word document with Microsoft Word UI with maximized window?

Hi, I would like to know is there any functionalities/methods in Aspose.Words to allow us to open up Word document with Microsoft Word(Open up in the Word application so can view or edit)?

FYI, we’re using Aspose.Words(23.3.0), thank you.

@chanho Aspose.Words is a class library for processing document, it does not depend and does not interact with MS Word. So, I am afraid, there is no way to open document in MS Word using Aspose.Words. However you can use code like this to open document in MS Word:

Process.Start(@"C:\Temp\doc.docx")
1 Like