import win32com.client
# interface -IID - QueryInterface()
# cst as COM object from a ProgID, x(CLSID).
# IDispatch interface: allow an object to expose an object model
# and allows the user of the object to determined the methods and properties available at runtime
# using COM objects: make method call on an object provided externally
# implement a COM object: publish an object with a number of interfaces external clients can use.
# cst is an object representing CST
cst = win32com.client.dynamic.Dispatch("CSTStudio.Application")
# cst.Visible=False
# CST documentation say the properties.
# win32com.client packages uses late-bounded automation when using obejcts
# When a property or method is referencedm the object is queried ,and if the query succeeds, the call can be made.
cst.SetQuiteMode(True) # ?
Word:
win32com操作word 第二集:Application&Documents接口 - 一灯编程 - 博客园
Application 接口 (Microsoft.Office.Interop.Word)
Automating Windows Applications Using COM
Overview
Office Visual Basic for Applications (VBA) reference
Office 13,