WordApplication
WordApplication refers to the Application object in Microsoft Word’s object model. It represents a running Word session and serves as the primary entry point for automation, enabling control of Word from VBA or from external languages such as .NET, Python (via COM), or PowerShell. Through this object you can access documents, windows, and core Word settings.
Key properties include Visible, DisplayAlerts, Documents, ActiveDocument, ActiveWindow, and Selection. Visible determines whether Word’s user interface
Key methods include Quit to terminate the Word session, Run to execute a macro, Activate to bring
Common usage scenarios involve automating repetitive tasks such as batch formatting, inserting or updating content, performing
Notes: The available properties and methods can vary slightly by Word version and platform (Windows vs. macOS).