I am using PHP to call/manipulate a Word document, using COM. One of the things I am doing is a SaveAs to text format. Because I am manipulating many Word documents, I don't want the document to show up in the recent files list.
The VBA SaveAs function has an optional parameter to accomplish this, but I am wondering, is there a way to pass named arguments to the COM object, similar to what you can do in VBA?
For example, in Word, I could write:
ActiveDocument.SaveAs(Filename:='mynewfilename.doc', FileFormat:=2, AddToRecentFiles:=False)
Is there a way to do this in PHP using the COM object?