I have this line of codes that will tell the printer to print a document. But it will only print colored content.
word = Dispatch("Word.Application")
word.Documents.Open(self.filePath)
word.ActiveDocument.PrintOut()
word.ActiveDocument.Close()
word.Quit()
What I want is to tell the printer to print grayscale content. Is there any possible solution for this?