Vcl.Controls.TBevelEdges

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TBevelEdges = set of TBevelEdge;

C++

typedef System::Set<TBevelEdge, TBevelEdge::beLeft, TBevelEdge::beBottom> TBevelEdges;

Properties

Type Visibility Source Unit Parent
set
typedef
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

TBevelEdges is a set type used to specify which edges of a window are beveled.

TBevelEdges is a set type, with elements of type TBevelEdge.


A variable of type TBevelEdges specifies which edges of a window are beveled. This type of variable can contain one or more of the following values:

Value Meaning

beLeft

The left edge is beveled.

beTop

The top edge is beveled.

beRight

The right edge is beveled.

beBottom

The bottom edge is beveled.


See Also