Vcl.Buttons.TButtonStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TButtonStyle = (bsAutoDetect, bsWin31, bsNew);

C++

enum DECLSPEC_DENUM TButtonStyle : unsigned char { bsAutoDetect, bsWin31, bsNew };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.Buttons.pas
Vcl.Buttons.hpp
Vcl.Buttons Vcl.Buttons

Description

TButtonStyle specifies the basic look of a TBitBtn control.

The following are possible values of TButtonStyle:



Value Meaning

bsAutoDetect

When using Windows 3.x, the bitmap button uses the standard Windows 3.x look. When using a later version of Windows, the bitmap button uses a newer look.

bsWin31

Uses the standard Windows 3.1 look, regardless of which version of Windows is running.

bsNew

Uses a new bitmap button look, regardless of which version of Windows is running.



See Also