CheckMenuRadioItem

[DllImport("user32.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)]
public static extern bool CheckMenuRadioItem(
   IntPtr hmenu,
   uint idFirst,
   uint idLast,
   uint idCheck,
   uint uFlags
);

Microsoft documentation: Link

Last updated