🎴 Flashcard Mode
General Programming and Framework Concepts
Card1 / 20
Mastered0
Review0
QuestionClick to flip
To use a button that can remain in a depressed position. We have to go for.
AnswerClick to flip back
A
TSpeedButton
💡 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.