Murali Prasath wrote:
>  
> I am handling excel application using python.
>   
> Could anybody please provide me full list of the functions
> win32.com.client.dispatch provides?
>  
> I have few with me that are Sheets,
> Dispatch("Excel.Application").Workbooks.Open(),
> Cur_sheet.UsedRange.Rows.Count etc..
> To mention precisely what i am looking is that list of inbuilt
> function that win32com.client.dispatch could support.

win32com.client.Dispatch doesn't provide any functions.  All it does is
return you a COM object in a form that can be used from Python.  Every
COM object has its own list of methods and properties.  What YOU need to
know is the method that are supported by the COM object you want.

In this case, you can Google for "excel object model" and find most of
what you want to know.  The Office applications provide a "rich" object
model with lots of methods and properties.  The examples are mostly in
Visual Basic or C#, but it's not too hard to translate them to Python.

-- 
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to