Back to Devexpress

FormatConditionRuleMinMaxBase.AutomaticType Property

windowsforms-devexpress-dot-xtraeditors-dot-formatconditionruleminmaxbase-3adf6dea.md

latest2.8 KB
Original Source

FormatConditionRuleMinMaxBase.AutomaticType Property

Gets or sets how the range’s maximum and minimum values are calculated when the FormatConditionRuleMinMaxBase.MaximumType and FormatConditionRuleMinMaxBase.MinimumType properties are set to Automatic.

Namespace : DevExpress.XtraEditors

Assembly : DevExpress.XtraEditors.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[DefaultValue(FormatConditionAutomaticType.Default)]
[DXCategory("Behavior")]
[XtraSerializableProperty]
public FormatConditionAutomaticType AutomaticType { get; set; }
vb
<DefaultValue(FormatConditionAutomaticType.Default)>
<XtraSerializableProperty>
<DXCategory("Behavior")>
Public Property AutomaticType As FormatConditionAutomaticType

Property Value

TypeDefaultDescription
FormatConditionAutomaticTypeDefault

A value that specifies how the range’s maximum and minimum values are calculated in Automatic mode. The FormatConditionAutomaticType.Default value is equivalent to FormatConditionAutomaticType.ValueBased.

|

Available values:

NameDescription
Default

Default is equivalent to ValueBased mode.

| | ValueBased |

The range’s maximum and minimum values are the highest and lowest column values, respectively.

| | ZeroBased |

The range’s maximum value is the highest column value, but not less than 0. The range’s minimum value is the lowest column value, but not greater than 0.

|

Remarks

See FormatConditionRuleMinMaxBase.MaximumType and FormatConditionRuleMinMaxBase.MinimumType properties to learn more.

See Also

MaximumType

MinimumType

FormatConditionRuleMinMaxBase Class

FormatConditionRuleMinMaxBase Members

DevExpress.XtraEditors Namespace