Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

StepProgressBarIndicatorOptions.ActiveStateDrawMode Property

Gets or sets the indicator draw mode. This mode is in effect when the item is in the Active state.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

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

#Property Value

Type Default Description
IndicatorDrawMode Default

The indicator draw mode.

Available values:

Name Description
Default

Same as Full.

None

Neither the indicator outline nor central area are visible. If assigned, an indicator icon is the only element visible in this mode.

Outline

An indicator outline is visible, and the central indicator area is empty.

Full

An indicator outline is visible, and the central indicator area is filled with the outline color.

#Property Paths

You can access this nested property as listed below:

Object Type Path to ActiveStateDrawMode
StepProgressBarItemOptions
.Indicator .ActiveStateDrawMode

#Remarks

The StepProgressBarIndicatorOptions.ActiveStateDrawMode and StepProgressBarIndicatorOptions.InactiveStateDrawMode properties allow you to choose from the following indicator styles:

drawmodes

  • Full or Default - an indicator outline is visible, and the central indicator area is filled with the outline color.
  • Outline - an indicator outline is visible, and the central indicator area is empty.
  • None - neither the indicator outline nor central area are visible. If assigned, an indicator icon is the only element visible in this mode.
See Also