Multiple choice technology programming languages

To use a button that can remain in a depressed position. We have to go for.

  1. TBitBtn

  2. TButton

  3. TSpeedButton

  4. TDepressedButton

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

TSpeedButton is specifically designed to function as a toggle button that can remain in a depressed (clicked) state. This is controlled through its GroupIndex property - when multiple TSpeedButtons share the same GroupIndex value, they act as radio buttons where one stays depressed. TButton and TBitBtn are standard push buttons that always return to their normal state after being clicked. TDepressedButton does not exist in the VCL component library.