Skip to main content

PictureEdit.TabStop Property

Gets or sets a value indicating whether the user can tab to the picture editor.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(false)]
[DXCategory("Behavior")]
public bool TabStop { get; set; }

Property Value

Type Default Description
Boolean false

true if the user can focus the picture editor using the TAB key; otherwise, false.

Remarks

Use the TabStop property to specify whether the user focus a picture edit control using the TAB key.

If the TabStop property is set to false (the default behavior), the editor is skipped when the TAB key is used to move through the tab order, but it can still receive focus by using the mouse.

A picture edit control with TabStop set to true is included in the tab order’s collection of controls and its tab order can be manipulated by setting the TabIndex property value.

See Also