InfoConnect for Airlines
GetObject(String) Method
Example 


The object moniker used to get the object.
Get an object by the object moniker.
Syntax
'Declaration
 
Public Function GetObject( _
   ByVal objectMoniker As String _
) As Object
'Usage
 
Dim instance As Application
Dim objectMoniker As String
Dim value As Object
 
value = instance.GetObject(objectMoniker)
public object GetObject( 
   string objectMoniker
)

Parameters

objectMoniker
The object moniker used to get the object.

Return Value

The object.
Remarks
Gets an object by its object moniker. Objects represent major functional areas. See each supported object's documentation for its moniker. Currently, Frame is the only supported object moniker.
Example
The following example shows how to get the Frame object.

	
See Also