TW3Borders
Class used for Border property of TW3MovableControl (and all visual components).
Unit: SmartCL.Borders.pas
- Hierarchy
- TObject
- TW3OwnedObject
- TW3Borders
- TW3OwnedObject
Properties |
---|
Bottom |
Edge |
Left |
Right |
Top |
Methods |
SetStyle |
Properties
Bottom
Indicate bottom border of component.
property Bottom: TW3Border read FBottom;
Example:
W3Panel1.Border.Bottom.Style:= besInset;
Edge
Access to the TW3Border specified by array property parameter.
property Edge[aValue: TW3BorderEdge]: TW3Border read getEdge;
Example:
W3Panel1.Border.Edge[beRight].Width:= 2;
See also: TW3BorderEdge , TW3Border
Left
Indicate left border of component.
property Left: TW3Border read FLeft;
Right
Indicate right border of component.
property Right: TW3Border read FRight;
Top
Indicate top border of component.
property Top: TW3Border read FTop;
Methods
SetStyle
Set style specified by aValue parameter to all four borders.
procedure setStyle(const aValue: TW3BorderEdgeStyle);