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

TrackBarProperties.ValueType Property

Gets or sets the data type of a track bar item value.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(typeof(decimal))]
public Type ValueType { get; set; }

Property Value

Type Default Description
Type decimal

A Type object that specifies the type of values.

Remarks

The ValueType property’s value affects the data type used to specify the Items.Value properties.

The ValueType property supports the following values.

  • System.Boolean
  • System.Int16
  • System.Int32
  • System.String
  • System.Decimal
  • System.Char
  • System.Byte
  • System.Guid

Note

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

See Also