Menu.FindMenuItem(Int32, IntPtr) Method

Definition

Gets the MenuItem that contains the value specified.

public:
 System::Windows::Forms::MenuItem ^ FindMenuItem(int type, IntPtr value);
public System.Windows.Forms.MenuItem FindMenuItem (int type, IntPtr value);
member this.FindMenuItem : int * nativeint -> System.Windows.Forms.MenuItem
Public Function FindMenuItem (type As Integer, value As IntPtr) As MenuItem

Parameters

type
Int32

The type of item to use to find the MenuItem.

value
IntPtr

nativeint

The item to use to find the MenuItem.

Returns

The MenuItem that matches value; otherwise, null.

Remarks

To search for a MenuItem using a handle, pass in the FindHandle field as the type, and the handle of the MenuItem you want to find as the value.

To search for a MenuItem using a shortcut, pass in the FindShortcut field as the type, and the Shortcut value for the MenuItem you want to find as the value.

Applies to