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

XlsxExportOptionsEx.UnboundExpressionExportMode Property

Gets or sets whether column values or column expressions are exported for unbound (calculated) columns.Only available in data-aware export mode.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v21.1.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public UnboundExpressionExportMode UnboundExpressionExportMode { get; set; }

Property Value

Type Description
DevExpress.Export.UnboundExpressionExportMode

A value that specifies whether column values or column expressions are exported for unbound (calculated) columns. The default value is AsValue.

Remarks

If a control contains an unbound (calculated) column whose values are evaluated based on an expression, you can use the UnboundExpressionExportMode property to choose between exporting the column calculated values or the column’s original expression.

A limited number of functions are supported when exporting expressions. See Criteria Language Syntax to learn more.

To export an expression that is based on the values of other columns, these columns must also be exported.

See Also