superclass=Object
type=class
library=win32ole
extended=
included=

WIN32OLE_PARAM objects represent param information of 
the OLE method.

     WIN32OLE_PARAM#name
 
Returns name.

     tobj = WIN32OLE_TYPE.new('Microsoft Excel 9.0 Object Library', 'Workbook')
     method = WIN32OLE_METHOD.new(tobj, 'SaveAs')
     param1 = method.params[0]
     puts param1.name # => Filename
