Vcl.StdCtrls.TScrollBar.Kind
Delphi
property Kind: TScrollBarKind read FKind write SetKind default sbHorizontal;
C++
__property Vcl::Forms::TScrollBarKind Kind = {read=FKind, write=SetKind, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Vcl.StdCtrls.pas Vcl.StdCtrls.hpp |
Vcl.StdCtrls | TScrollBar |
Description
Specifies whether the scroll bar is horizontal or vertical.
Set Kind to indicate the orientation of the scroll bar. These are the possible values:
Value | Meaning |
---|---|
sbHorizontal |
Scroll bar is horizontal |
sbVertical |
Scroll bar is vertical |
Code Examples