Vcl.ComCtrls.TToolButton.Down

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Down: Boolean read FDown write SetDown stored IsCheckedStored default False;

C++

__property bool Down = {read=FDown, write=SetDown, stored=IsCheckedStored, default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TToolButton

Description

Specifies whether the button is selected (down) or unselected (up).

Read Down to determine whether a tool button is selected. Setting Down to true at design time causes the button to be initially selected.

Tool buttons can remain Down only if Style is tbsCheck.

See Also