Back to Devexpress

RangeBaseEdit.Minimum Property

wpf-devexpress-dot-xpf-dot-editors-dot-rangebaseedit-22f57921.md

latest4.9 KB
Original Source

RangeBaseEdit.Minimum Property

Gets or sets the minimum allowed value.

Namespace : DevExpress.Xpf.Editors

Assembly : DevExpress.Xpf.Core.v25.2.dll

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public double Minimum { get; set; }
vb
Public Property Minimum As Double

Property Value

TypeDescription
Double

A Double value that specifies the minimum allowed value.

|

Remarks

The editor’s RangeBaseEdit.Value property cannot be set to a value less than RangeBaseEdit.Minimum and greater than RangeBaseEdit.Maximum. By default, these properties are set to 0 and 100 , respectively.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Minimum property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

reporting-wpf-report-designer-customize-controls-smart-tag/CS/App.xaml#L55

xml
<dxe:TrackBarEdit EditValue="{Binding Progress, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
                      Minimum="0"
                      Maximum="{Binding MaxValue, UpdateSourceTrigger=PropertyChanged}"

wpf-svgimagesource-extension-specify-vector-image-as-glyph/CS/DXSample/MainWindow.xaml#L52

xml
EditValue="3"
Minimum="1"
Maximum="5"

wpf-data-grid-create-custom-drop-down-filter/CS/DXGrid_CustomFilterPopup/Window1.xaml#L17

xml
<Label Content="Minimum Index:" Margin="5"/>
<dxe:TrackBarEdit Minimum="0" Maximum="100"
                  Width="200" Margin="10"

dxrichedit-for-wpf-how-to-implement-progress-indicator/CS/MyProgressIndicator.cs#L41

csharp
{
    _Indicator.Minimum = minProgress;
    _Indicator.Maximum = maxProgress;

wpf-richedit-use-docvariable-fields/CS/MyProgressIndicator.cs#L31

csharp
{
    _Indicator.Minimum = minProgress;
    _Indicator.Maximum = maxProgress;

dxrichedit-for-wpf-how-to-implement-progress-indicator/VB/MyProgressIndicator.vb#L39

vb
Private Sub Begin(ByVal displayName As String, ByVal minProgress As Integer, ByVal maxProgress As Integer, ByVal currentProgress As Integer) Implements IProgressIndicationService.Begin
    _Indicator.Minimum = minProgress
    _Indicator.Maximum = maxProgress

wpf-richedit-use-docvariable-fields/VB/MyProgressIndicator.vb#L30

vb
Private Sub Begin(ByVal displayName As String, ByVal minProgress As Integer, ByVal maxProgress As Integer, ByVal currentProgress As Integer) Implements IProgressIndicationService.Begin
    _Indicator.Minimum = minProgress
    _Indicator.Maximum = maxProgress

See Also

Maximize()

Minimize()

RangeBaseEdit Class

RangeBaseEdit Members

DevExpress.Xpf.Editors Namespace