Back to Devexpress

FormatConditionRuleMinMaxBase.Minimum Property

windowsforms-devexpress-dot-xtraeditors-dot-formatconditionruleminmaxbase-5d4e3204.md

latest2.2 KB
Original Source

FormatConditionRuleMinMaxBase.Minimum Property

Gets or sets the minimum of the target value range.

Namespace : DevExpress.XtraEditors

Assembly : DevExpress.XtraEditors.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[XtraSerializableProperty]
[DXCategory("Behavior")]
public decimal Minimum { get; set; }
vb
<XtraSerializableProperty>
<DXCategory("Behavior")>
Public Property Minimum As Decimal

Property Value

TypeDescription
Decimal

The minimum of the target value range.

|

Remarks

The Minimum property is in effect if the FormatConditionRuleMinMaxBase.MinimumType property is set to Number or Percent.

If the MinimumType property set to Percent, the Minimum property specifies a percentage of the difference between the highest and lowest column values.

minValue + (maxValue - minValue) * (Minimum/100)

For example, the minimum value in a data source filed equals to 200 and the maximum value equals to 300. The Minimum property set to 20 (20%) means that the minimum value is 220 :

200 + (300 - 200) * (20/100) = 220

See Also

Maximum

MinimumType

MaximumType

FormatConditionRuleMinMaxBase Class

FormatConditionRuleMinMaxBase Members

DevExpress.XtraEditors Namespace