CheckRadioButton function user32
Adds a check mark to (checks) a specified radio button in a group and removes a check mark from (clears) all other radio buttons in the group.
BOOL CheckRadioButton(
HWND hDlg,
int nIDFirstButton,
int nIDLastButton,
int nIDCheckButton
);
Implementation
int CheckRadioButton(
int hDlg, int nIDFirstButton, int nIDLastButton, int nIDCheckButton) =>
_CheckRadioButton(hDlg, nIDFirstButton, nIDLastButton, nIDCheckButton);