Skip to main content

TcxEditBorderStyle Enum

Represents the border style of an edit control.

Declaration

TcxEditBorderStyle = (
    ebsNone,
    ebsSingle,
    ebsThick,
    ebsFlat,
    ebs3D,
    ebsUltraFlat,
    ebsOffice11
);

Members

Name
ebsNone
ebsSingle
ebsThick
ebsFlat
ebs3D
ebsUltraFlat
ebsOffice11

Remarks

The TcxEditBorderStyle type enumerates border styles of an editor. Use the TcxCustomEditStyle.BorderStyle property to set the border style.

Value

Meaning

ebsNone

Normally, no borders are drawn around the edit control. However, when the mouse cursor is positioned over the editor or the editor has focus, editor borders are drawn flat.

The following images demonstrate the TcxButtonEdit control with BorderStyle set to ebsNone and HotTrack set to True.

ebsSingle

The editor normally has thin borders. When the mouse cursor is positioned over the editor or the editor has focus, the editor has thick borders.

The following images demonstrate the TcxButtonEdit control with BorderStyle set to ebsSingle and HotTrack set to True.

ebsThick

Editor borders are always thick, i.e. the mouse position has no effect.

The following image demonstrates the TcxButtonEdit control with BorderStyle set to ebsThick.

ebsFlat

Normally, editor borders are flat. When the mouse cursor is positioned over the editor or the editor has focus, editor borders appear three-dimensional.

The following images demonstrate the TcxButtonEdit control with BorderStyle set to ebsFlat and HotTrack set to True.

ebs3D

The editor appears three-dimensional and the mouse position has no effect.

The following image demonstrates the TcxButtonEdit control with BorderStyle set to ebs3D.

ebsUltraFlat

Editor borders have an Office XP style. Editor borders and buttons are highlighted when you move mouse cursor over the editor.

The following images demonstrate the TcxButtonEdit control with BorderStyle set to ebsUltraFlat and HotTrack set to True.

ebsOffice11

Editor borders have an Office 2003 style. Editor borders and buttons are highlighted when you move mouse cursor over the editor.

The following images demonstrate the TcxButtonEdit control with BorderStyle set to ebsOffice11 and HotTrack set to True.

See Also