I want to open a text document through interop, and the word should be visible in the process. This looks pretty straight forward because there is a parameter called "visible in an open function in a text document." But the word is in What am I missing?
static void Main(string[] args) { Microsoft.Office.Interop.Word.Application word = null; word = new Microsoft.Office.Interop.Word.Application(); object inputFile = "c:\\test.docx"; object confirmConversions = false; object readOnly = true; object visible = true; object missing = Type.Missing;
source share