Skip to main content

SpreadsheetCsvExportOptions.ShiftTopLeft Property

Gets or sets whether to skip the top left empty cells when exporting the worksheet. This is a dependency property.

Namespace: DevExpress.Xpf.Spreadsheet

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

NuGet Package: DevExpress.Wpf.Spreadsheet

Declaration

public bool ShiftTopLeft { get; set; }

Property Value

Type Description
Boolean

true to skip the top left empty cells; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShiftTopLeft
SpreadsheetExportOptions
.Csv .ShiftTopLeft

Remarks

If the SpreadsheetCsvExportOptions.Range is not specified, the ShiftTopLeft property allows you to skip the top left empty cells. If the ShiftTopLeft is set to true, the worksheet (before export) is treated as if the non-empty cells are shifted up and left so that the top left cell of the non-empty range becomes the top left cell of the worksheet.

If the ShiftTopLeft is false (default), the top left empty cells are exported, resulting in strings filled with the SpreadsheetCsvExportOptions.ValueSeparator characters.

See Also