windowsforms-devexpress-dot-utils-dot-trackbarcontextbutton-97c96c1e.md
Gets or sets the value located in the middle of the track.
Namespace : DevExpress.Utils
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
[DefaultValue(100)]
[DXCategory("Behavior")]
public int Middle { get; set; }
<DXCategory("Behavior")>
<DefaultValue(100)>
Public Property Middle As Integer
| Type | Default | Description |
|---|---|---|
| Int32 | 100 |
An integer value located in the middle of the track.
|
By default, the TrackBarContextButton does not display the middle tick. To display it, set the TrackBarContextButton.AllowUseMiddleValue property to true. By default, if this option is enabled, the middle tick corresponds to the mean value between the TrackBarContextButton.Maximum and TrackBarContextButton.Minimum property values. You can also set the middle tick to a custom value between the extreme values using the Middle property. For instance, you can set minimum to -273, maximum to 100, and use zero as the middle tick value. In this case, the middle tick does not divide the scale in half, but into two unequal ranges.
See Also