Vcl.Buttons.TBitBtn.Kind
Delphi
property Kind: TBitBtnKind read GetKind write SetKind default bkCustom;
C++
__property TBitBtnKind Kind = {read=GetKind, write=SetKind, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Vcl.Buttons.pas Vcl.Buttons.hpp |
Vcl.Buttons | TBitBtn |
Description
Specifies the kind of bitmap button.
Use Kind to specify the appearance of the TBitBtn control and its response when the user clicks the button. A standard set of buttons are included and operate as expected without the addition of code. However, you can write additional code in the button events, if you want to. This does not include the Custom button kind, which can be programmed in any way you like.
The images (such as the green check mark on the OK button) appear on the button when using this version of TBitBtn.