InfoConnect for Airlines
GetContextMenuItem Method (IContextMenu)


The name of the menu item, as it is displayed within the menu. This applies only to items of type ContextMenuItemType.MenuItem
Returns a context menu item with the specified name.
Syntax
'Declaration
 
Function GetContextMenuItem( _
   ByVal name As String _
) As ContextMenuItem
'Usage
 
Dim instance As IContextMenu
Dim name As String
Dim value As ContextMenuItem
 
value = instance.GetContextMenuItem(name)
ContextMenuItem GetContextMenuItem( 
   string name
)

Parameters

name
The name of the menu item, as it is displayed within the menu. This applies only to items of type ContextMenuItemType.MenuItem

Return Value

A ContextMenuItem with the specified name, or null if no such item exists.
Remarks
This method cannot be used to return separator menu items, as they cannot be uniquely identified.
See Also