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

SimpleButton.ShowFocusRectangle Property

Gets or sets whether the dotted focus rectangle is displayed within the SimpleButton when it has focus.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Appearance")]
[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean ShowFocusRectangle { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

The DefaultBoolean value that specifies whether the dotted focus rectangle is displayed within the SimpleButton when it has focus.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

A focused SimpleButton can be displayed with or without the dotted focus rectangle. By default, the dotted focus rectangle is displayed when the SimpleButton is focused. Set the ShowFocusRectangle property to DefaultBoolean.False to display the focused SimpleButton without the dotted focus rectangle. In the following images, the SimpleButton is displayed with and without the dotted focus rectangle accordingly.

SimpleButton_SelectedFocused SimpleButton_SelectedNotFocused

You can also specify whether the SimpleButton can be focused via the SimpleButton.AllowFocus property.

See Also