TiLabel.BorderStyle
TiLabel See Also
Determines the outer border style of the control.
type TiLabelBorderStyle= (ilbsNone, ilbsSingle, ilbsLowered, ilbsRaised);
property BorderStyle : TiLabelBorderStyle;
Description
Use BorderStyle to provide the control with a three-dimensional beveled or
outlined look.
These are the possible values:
Value
Meaning
ilbsNone
No border.
ilbsSingle
The outer border is a single-pixel width and height box.
ilbsRaised
The outer border is raised.
ilbsLowered
The outer border is lowered.
Example
Delphi
iComponent.BorderStyle := ilbsLowered;
C++ Builder
iComponent->BorderStyle = ilbsLowered;
Contents | Index | Previous | Next