FormatConditionRuleMinMaxBase.Minimum Property
Gets or sets the minimum of the target value range.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.2.dll
Declaration
Property Value
Type | Description |
---|---|
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