Skip to main content
A newer version of this page is available. .

XlsxExportOptionsEx.AutoCalcConditionalFormattingIconSetMinValue Property

Gets or sets whether to set the minimum value for the Icon Set conditional formatting rule explicitly.Only available in data-aware export mode.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(DefaultBoolean.Default)]
[TypeConverter(typeof(DefaultBooleanConverter))]
public DefaultBoolean AutoCalcConditionalFormattingIconSetMinValue { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

DefaultBoolean.True to specify the conditional formatting rule’s minimum value in the exported document; DefaultBoolean.Default when unspecified and DefaultBoolean.False to leave the rule’s minimum value unassigned.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

The AutoCalcConditionalFormattingIconSetMinValue property can be useful when a control exports the data with the Icon Set Conditional Formatting Rule to the XLSX format. When the property is set to DefaultBoolean.True, the spreadsheet application does not calculate the minimum value for the Icon Set conditional formatting automatically. Instead, it uses the value specified in the rule.

The following pictures illustrates the use of this property.

The source WinForms Data Grid control with conditional formatting looks as follows.

xl_export_options_AutoCalcConditionalFormattingIconSetMinValue_source

The document exported using different settings is shown in the following table.

AutoCalcConditionalFormattingIconSetMinValue = DefaultBoolean.False AutoCalcConditionalFormattingIconSetMinValue = DefaultBoolean.True
xl_export_options_AutoCalcConditionalFormattingIconSetMinValue_false xl_export_options_AutoCalcConditionalFormattingIconSetMinValue_true
Icon Set rule’s minimum value parameter is calculated automatically and set to -78. Icon Set rule’s minimum value parameter is obtained from the document and equals 0.
See Also