windowsforms-devexpress-dot-xtraeditors-dot-stepprogressbar-65a54267.md
Gets or sets whether a user can move focus between StepProgressBar items using the keyboard and select an item on click.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(DefaultBoolean.Default)]
[DXCategory("Behavior")]
public DefaultBoolean AllowUserInteraction { get; set; }
<DefaultValue(DefaultBoolean.Default)>
<DXCategory("Behavior")>
Public Property AllowUserInteraction As DefaultBoolean
| Type | Default | Description |
|---|---|---|
| DefaultBoolean | Default |
A value that specifies whether a user can move focus between StepProgressBar items using the keyboard and select an item on click.
|
Available values:
| Name | Description | Return Value |
|---|---|---|
| True |
The value is true.
|
0
| | False |
The value is false.
|
1
| | Default |
The value is specified by a global option or a higher-level object.
|
2
|
A user can interact with StepProgressBar items as follows:
The AllowUserInteraction property specifies whether a user can interact with all StepProgressBar items.
Note
AllowUserInteraction affects only the end user experience. It does not affect item selection in code.
Use the StepProgressBarItem.AllowUserInteraction property to prevent user interaction with a specific item.
Tip
Users cannot interact with disabled items. Set the StepProgressBarItem.Enabled property to false to disable an item.
See Also