Vcl.Forms.TFormBorderStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFormBorderStyle = (bsNone, bsSingle, bsSizeable, bsDialog, bsToolWindow,
bsSizeToolWin);

C++

enum DECLSPEC_DENUM TFormBorderStyle : unsigned char { bsNone, bsSingle, bsSizeable, bsDialog, bsToolWindow, bsSizeToolWin };

Properties

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

Description

TFormBorderStyle is the type of the BorderStyle property for windows-only forms and TBorderStyle is the type of the BorderStyle property for other controls in windows-only applications.

These are the possible values of the TFormBorderStyle type:



Value Meaning

bsNone

No visible border. (not resizable)

bsSingle

Single-line border. (not resizable)

bsDialog

Standard dialog box border. (not resizable)

bsSizeable

Standard resizable border.

bsToolWindow

Like bsSingle but with a smaller caption.

bsSizeToolWin

Like bsSizeable but with a smaller caption.



Only the bsNone and bsSingle values are possible values of TBorderStyle.