TiComponent.BorderStyle

TiComponent See Also

Determines the outer border style of the control.

type TiBevelStyle = (ibsNone, ibsRaised, ibsLowered);

property
BorderStyle : TiBevelStyle;

Description

Use BorderStyle to provide the control with a three-dimensional beveled look.

These are the possible values:

Value
Meaning
ibsNone
No border.
ibsRaised
The outer border is raised.
ibsLowered
The outer border is lowered.

Example

Delphi

iComponent.BorderStyle := ibsLowered;

C++ Builder

iComponent->BorderStyle = ibsLowered;

Note: Not all descendants implement this property.

Contents | Index | Previous | Next