, , , GroupIndex < > 0, , , , RadioButtons (AllowAllUp True).
onClick , , , GroupIndex.
, , Down False onClick, Down , onClick .
:
procedure TForm1.SpeedButton1Click(Sender: TObject);
begin
with Sender as TSpeedButton do
begin
if Down then
showmessage('pressing')
else
showmessage('unpressing');
end;
end;