Skip to main content
Row

Table.GetDataSource(RangeDataSourceOptions) Method

Creates the data source from the worksheet table using the specified options.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

object GetDataSource(
    RangeDataSourceOptions options
)

Parameters

Name Type Description
options RangeDataSourceOptions

A RangeDataSourceOptions object containing the data source options.

Returns

Type Description
Object

An object that is the created data source.

Remarks

The method also creates the WorksheetTableDataBinding object and adds it to the Worksheet.DataBindings collection.

Example

View Example

RangeDataSourceOptions options = new RangeDataSourceOptions();
Worksheet sheet = spreadsheetControl1.ActiveWorksheet;
Table sheetDataTable = sheet.Tables[0];
if (sheetDataTable.ShowHeaders)
    options.UseFirstRowAsHeader = true;
else {
    options.UseFirstRowAsHeader = false;
}
options.EditingOptions = DataSourceEditingOptions.ReadOnly;
options.SkipHiddenColumns = false;
rangeDS = sheetDataTable.GetDataSource(options);
sheet.DataBindings.Error += DataBindings_Error;

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetDataSource(RangeDataSourceOptions) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also