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.
TFormBorderStyle = ( bsNone, bsSingle, bsSizeable, bsDialog, bsToolWindow, bsSizeToolWin );
enum TFormBorderStyle { bsNone, bsSingle, bsSizeable, bsDialog, bsToolWindow, bsSizeToolWin };
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.
|
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
|
What do you think about this topic? Send feedback!
|