ToolWin.TEdgeBorder
From RAD Studio VCL Reference
Delphi Information
From ToolWin.pas
TEdgeBorder = { ebLeft, ebTop, ebRight, ebBottom };
Unit: ToolWin
Type: enum
C++ Information
From ToolWin.hpp
enum TEdgeBorder{ ebLeft, ebTop, ebRight, ebBottom };
Unit: ToolWin
Type: enum
Description
TEdgeBorder is the type of the EdgeBorders property.
TEdgeBorder is a set of TEdgeBorder values. Each TEdgeBorder value indicates whether a beveled edge appears on a particular side of a control. The following table lists the TEdgeBorder values:
| Value | Meaning |
|---|---|
|
ebLeft |
The control has a beveled left edge. |
|
ebTop |
The control has a beveled top edge. |
|
ebRight |
The control has a beveled right edge. |
|
ebBottom |
The control has a beveled bottom edge. |
In addition to the values in the preceding table, the QGraphics unit defines the ebRect constant to represent all the edges of a control:
const ebRect = [ebLeft, ebTop, ebRight, ebBottom];
- define ebRect (System::Set<TEdgeBorder, ebLeft, ebBottom> () << TEdgeBorder(0) << TEdgeBorder(1) << TEdgeBorder(2) << TEdgeBorder(3) )