Vcl.ComCtrls.TToolButton.Indeterminate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Indeterminate: Boolean read FIndeterminate write SetIndeterminate default False;

C++

__property bool Indeterminate = {read=FIndeterminate, write=SetIndeterminate, default=0};

Properties

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

Description

Indicates that the tool button is neither selected nor unselected.

Indeterminate provides a third state for tool buttons that are neither selected nor unselected. Set this property in program code to indicate that a button is inapplicable in a particular context. Buttons with the Indeterminate property set to true appear grayed.

When Indeterminate is set to true, Down is automatically set to false.

See Also