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

BaseRange.StartValue Property

Gets or sets the absolute start value of the range.

Namespace: DevExpress.XtraGauges.Core.Model

Assembly: DevExpress.XtraGauges.v18.2.Core.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(0F)]
public float StartValue { get; set; }

Property Value

Type Default Description
Single 0

A Single value that specifies the absolute start value of the range.

Remarks

To specify the end value, use the BaseRange.EndValue property.

For ScaleRange objects and their descendants, you can specify bounds for a range as percentages, rather than in absolute values. This can be accomplished via the ScaleRange.StartPercent and ScaleRange.EndPercent properties.

See Also