Skip to main content

RangeControl.AllowImmediateRangeUpdate Property

Gets or sets whether changes to the selected or visible area via the user interface are being posted immediately or after the interaction is completed. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Controls

Assembly: DevExpress.UI.Xaml.Controls.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public bool AllowImmediateRangeUpdate { get; set; }

Property Value

Type Description
Boolean

true, to post changes immediately; otherwise, false.

Remarks

If the AllowImmediateRangeUpdate property is set to true, dragging selection thumbs or zoom grips immediately changes values of the RangeControl.SelectionRangeStart and RangeControl.SelectionRangeEnd or RangeControl.VisibleRangeStart and RangeControl.VisibleRangeEnd properties respectively. If the AllowImmediateRangeUpdate property is set to false, the values of these properties are being changed after finishing the interaction, e.g., releasing the selection thumb.

See Also