officefileapi-devexpress-dot-spreadsheet-dot-datasourceoptionsbase-2fe2d5c5.md
Gets or sets whether to include the hidden rows into the binding range.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
public bool SkipHiddenRows { get; set; }
Public Property SkipHiddenRows As Boolean
| Type | Description |
|---|---|
| Boolean |
true , to skip hidden rows; otherwise, false. Default is false.
|
The SkipHiddenRows and DataSourceOptionsBase.SkipHiddenColumns properties operate differently depending on the data source type you use:
External Data Source
Cell Range as a 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.
dsOptions.CellValueConverter = new MyWeatherConverter();
dsOptions.SkipHiddenRows = true;
spreadsheet-document-api-data-binding/CS/SpreadsheetApiDataBinding/Program.cs#L50
dsOptions.CellValueConverter = new MyWeatherConverter();
dsOptions.SkipHiddenRows = true;
options.PreserveFormulas = true;
options.SkipHiddenRows = true;
// Bind the grid control to the table data.
dsOptions.CellValueConverter = new MyWeatherConverter();
dsOptions.SkipHiddenRows = true;
// Bind the data source to the worksheet range.
dsOptions.CellValueConverter = New MyWeatherConverter()
dsOptions.SkipHiddenRows = True
spreadsheet-document-api-data-binding/VB/SpreadsheetApiDataBinding/Program.vb#L44
dsOptions.CellValueConverter = New MyWeatherConverter()
dsOptions.SkipHiddenRows = True
options.PreserveFormulas = True
options.SkipHiddenRows = True
' Bind the grid control to the table data.
dsOptions.CellValueConverter = New MyWeatherConverter()
dsOptions.SkipHiddenRows = True
' Bind the data source to the worksheet range.
See Also