Skip to main content
A newer version of this page is available. .

BaseControl.BorderStyle Property

Gets or sets the control’s border style.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

[DXCategory("Appearance")]
public virtual BorderStyles BorderStyle { get; set; }

Property Value

Type Description
BorderStyles

A BorderStyles enumeration value specifying the control’s border style.

Available values:

Name Description
NoBorder

There are no borders.

The image below demonstrates the NoBorder style applied to the ButtonEdit control.

ButtonBorderStyle_NoBorder

Simple

Borders are flat.

The image below demonstrates the Simple style applied to the ButtonEdit control.

ButtonBorderStyle_Simple

Flat

Borders are flat.

The image below demonstrates the Flat style applied to the ButtonEdit control.

ButtonBorderStyleFlat

HotFlat

Borders are flat. Borders and the client area are highlighted when the mouse pointer is positioned over them.

The image below demonstrates the HotFlat style applied to the ButtonEdit control.

ButtonBorderStyle_HotFlat

ButtonBorderStyle_HotFlat_Focused

UltraFlat

Borders have an Office XP style. Borders and the client area are highlighted when the mouse pointer is positioned over them or they are focused. Otherwise, there are no borders.

The image below demonstrates the UltraFlat style applied to the ButtonEdit control.

ButtonBorderStyle_UltraFlat

ButtonBorderStyle_UltraFlat_Focused

Style3D

Borders are three-dimensional.

The image below demonstrates the Style3D style applied to the ButtonEdit control.

ButtonBorderStyle_Style3D

Office2003

Borders have an Office 2003 style.

The image below demonstrates the Office2003 style applied to a ButtonEdit control.

Office2003

Default

The border style is determined by the current Look-and-Feel settings.

For example, text editors’ borders are painted according to the RepositoryItem.LookAndFeel object’s settings.

Remarks

If the BorderStyles property is set to BorderStyles.Default, the border style is controlled by the BaseControl.LookAndFeel property.

To specify an editor’s border style, you can also use the RepositoryItem.BorderStyle property of the editor’s repository item object available via the BaseEdit.Properties property. The RepositoryItem.BorderStyle property value is synchronized with the BorderStyle property value.

The following code snippets (auto-collected from DevExpress Examples) contain references to the BorderStyle property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also