GetMenuItemInfo

[DllImport("user32.dll")]
public static extern bool GetMenuItemInfo(
   IntPtr hMenu,
   uint uItem,
   bool fByPosition,
   ref MENUITEMINFO lpmii
);

Microsoft documentation: Link

Last updated