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

RepositoryItemLookUpEditBase.UseCtrlScroll Property

Gets or sets whether the CTRL key must be pressed to scroll data records using the UP/DOWN ARROW keys when the popup window is closed.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Behavior")]
public virtual bool UseCtrlScroll { get; set; }

Property Value

Type Description
Boolean

true, if the CTRL key must be pressed to scroll data records using the UP/DOWN ARROW keys when the popup window is closed; otherwise, false.

Remarks

If the editor is focused, but the popup window is closed, an end-user can scroll data records using the UP/DOWN ARROW keys.

By default, if the editor is used in the in-place mode in an editor container (for instance, used as a column data editor in the GridControl), to scroll the editor’s data records, an end-user must use the CTRL+UP/DOWN ARRROW key combination. If the editor is standalone, the data records can be scrolled using only the UP/DOWN ARROW keys by default.

The UseCtrlScroll property allows you to override the default behavior, and explicitly specify whether the CTRL key must be pressed to scroll the editor’s data records using the UP/DOWN ARROW keys.

See Also