Home

News

International

Screen Shots

Documentation

Download

Build

License

Credits

Contact

SourceForge Project

Tintware Documentation : Tint Automation Client : Automation Reference : method.call

Syntax

#(%object.%method,...)

%object is an object and %method is the name of the method to be called. There may be zero or more arguments. Arguments are mapped to automation types based on the signature of the method. Extra arguments and arguments which don't have any type information in the signature are passed as strings. Arguments which are out or in out, must be passed by reference. This means that the argument is the name of the string whose value is then used or set.

Example

#(oleauto.new-object,msxml2.domdocument)
oleauto.object.0104a608
#(oleauto.object.0104a608.createElement,foobar)
oleauto.object.0104a6e0
#(oleauto.object.0104a608.appendChild,oleauto.object.0104a6e0)
oleauto.object.0104a6a8
#(oleauto.object.0104a608.xml)
<foobar/>