Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

TxtDocumentExporterOptions.ShiftTopLeft Property

Gets or sets whether to skip the top left empty cells when exporting the worksheet.

Namespace: DevExpress.XtraSpreadsheet.Export

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

[DefaultValue(false)]
public override bool ShiftTopLeft { get; set; }

Property Value

Type Default Description
Boolean **false**

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
WorkbookExportOptions
.Txt.ShiftTopLeft

Remarks

If the TxtDocumentExporterOptions.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 TxtDocumentExporterOptions.ValueSeparator or TxtDocumentExporterOptions.TextDefaultValueSeparator characters.

See Also