InfoConnect for Airlines
InvokeMember(String,Object[]) Method


The name of the property or method to invoke.
Input parameters.
Executes a method (with parameters) defined in the current HTML page.
Syntax
'Declaration
 
Overloads Function InvokeMember( _
   ByVal methodName As String, _
   ByVal parameters() As Object _
) As Object
'Usage
 
Dim instance As IWebElement
Dim methodName As String
Dim parameters() As Object
Dim value As Object
 
value = instance.InvokeMember(methodName, parameters)

Parameters

methodName
The name of the property or method to invoke.
parameters
Input parameters.

Return Value

The element returned by the function, represented as an Object. If this Object is another HTML element, and you have a reference to the unmanaged MSHTML library added to your project, you can cast it to its appropriate unmanaged interface.
See Also