Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DataTableExportOptions.CustomConverters Property

Gets or sets custom converters for cell values.

Namespace: DevExpress.Spreadsheet.Export

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

public Dictionary<string, ICellValueToColumnTypeConverter> CustomConverters { get; set; }

#Property Value

Type Description
Dictionary<String, ICellValueToColumnTypeConverter>

A generic dictionary Dictionary<TKey,TValue><String,ICellValueToColumnTypeConverter,>, providing a collection of complementary column name - converter pairs.

#Property Paths

You can access this nested property as listed below:

Object Type Path to CustomConverters
DataTableExporter
.Options .CustomConverters

#Remarks

To use a custom converter, add it to the dictionary. Review the following topic for more information: How to: Use a Custom Converter for Export to a DataTable.

See Also