CsvDocumentImporterOptions.Worksheet Property
Gets or sets a destination worksheet into which data is imported.
Namespace: DevExpress.XtraSpreadsheet.Import
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | String.Empty | The worksheet name. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to Worksheet |
---|---|
WorkbookImportOptions |
|
Remarks
The code snippet below creates a new worksheet and imports data from a CSV file into this worksheet.
using DevExpress.Spreadsheet;
// ...
// Create a new worksheet.
workbook.Worksheets.Add("Data");
// Import data from a CSV file into this worksheet.
workbook.Options.Import.Csv.Worksheet = "Data";
workbook.LoadDocument(@"Documents\Book1.csv");
See Also