Skip to main content
A newer version of this page is available. .
Row

DataSourceOptionsBase.SkipHiddenRows Property

Gets or sets whether to include the hidden rows into the binding range.

Namespace: DevExpress.Spreadsheet

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

Declaration

public bool SkipHiddenRows { get; set; }

Property Value

Type Description
Boolean

true, to skip hidden rows; otherwise, false. Default is false.

Remarks

The SkipHiddenRows and DataSourceOptionsBase.SkipHiddenColumns properties operate differently depending on the data source type you use:

  • External Data Source

    These properties specify whether data should be inserted into hidden rows and columns. Set these properties to true to skip hidden rows and columns in a target cell range when data is retrieved from a data source. Data is inserted into the next visible row or column.

  • Cell Range as a Data Source

    These properties specify whether to take hidden columns and rows into account when data is extracted from a cell range. If the DataSourceOptionsBase.SkipHiddenColumns and SkipHiddenRows options are true, hidden columns and rows within a source range are skipped when a data source is created. The resulting data source contains only values originating from visible columns and rows. The unhide operation does not add columns and rows to the data source.

The following code snippets (auto-collected from DevExpress Examples) contain references to the SkipHiddenRows property.

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