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

TrackBarProperties.ScalePosition Property

Gets or sets the scale position with respect to the track.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(ScalePosition.None)]
public ScalePosition ScalePosition { get; set; }

Property Value

Type Default Description
ScalePosition **None**

One of the ScalePosition enumeration values.

Available values:

Name Description
None

A scale is not displayed in an editor.

ScalePosition_None

Both

A scale is displayed at both sides of the editor: left and right (for the vertical orientation), or top and bottom (for the horizontal orientation).

ScalePosition_Both

RightOrBottom

A scale is displayed at the right side of the editor (for the vertical orientation) or at the bottom side (for the horizontal orientation).

ScalePosition_RightOrBottom

LeftOrTop

A scale is displayed at the left side of the editor (for the vertical orientation) or at the top side (for the horizontal orientation).

ScalePosition_LeftOrTop

Remarks

You can use the ScalePosition property to specify where the scale can be displayed: on one or both sides along the track.

Note

The ScalePosition property synchronizes its value with the editor’s ASPxTrackBar.ScalePosition property.

See Also