ICellValueToColumnTypeConverter.Convert(Cell, CellValue, Type, out Object) Method
In This Article
Converts a cell value to the data stored in the DataTable.
Namespace: DevExpress.Spreadsheet.Export
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
#Declaration
ConversionResult Convert(
Cell readOnlyCell,
CellValue cellValue,
Type dataColumnType,
out object result
)
#Parameters
Name | Type | Description |
---|---|---|
read |
Cell | A Cell object that is the worksheet cell containing the source value. |
cell |
Cell |
A Cell |
data |
Type | A Type object that indicates the type of data stored in the column. |
result | Object | An object that is the result of conversion. |
#Returns
Type | Description |
---|---|
Conversion |
A Conversion |
#Remarks
For a use example, please review the How to: Use a Custom Converter for Export to a DataTable document.
See Also