@msdn=http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/resources/menus/menureference/menustructures/menuiteminfo.asp @pinvoke=http://pinvoke.net/$$$.htm Summary: The MENUITEMINFO structure contains information about a menu item. !!!!C# Signature: [StructLayout(LayoutKind.Sequential)] struct MENUITEMINFO { public uint cbSize; public uint fMask; public uint fType; public uint fState; public uint wID; public IntPtr hSubMenu; public IntPtr hbmpChecked; public IntPtr hbmpUnchecked; public IntPtr dwItemData; public string dwTypeData; public uint cch; public IntPtr hbmpItem; // return the size of the structure public static uint sizeOf { get { return (uint)Marshal.SizeOf(typeof(MENUITEMINFO)); } } } !!!!VB.Net Signature: <StructLayout(LayoutKind.Sequential)> _ Public Structure MENUITEMINFO Public cbSize As Integer Public fMask As Integer Public fType As Integer Public fState As Integer Public wID As Integer Public hSubMenu As IntPtr Public hbmpChecked As IntPtr Public hbmpUnchecked As IntPtr Public dwItemData As IntPtr Public dwTypeData As String Public cch As Integer Public hbmpItem As IntPtr End Structure !!!!User-Defined Field Types: None. !!!!Notes: None. Documentation: MENUITEMINFO@msdn on MSDN
Edit Structures.MENUIT...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.