Version

HideRows Method

Hides the rows in the specified range.
Syntax
public void HideRows( 
   Nullable<int> startIndex,
   Nullable<int> count
)

Parameters

startIndex
The index of the first row to hide, or null to start hiding at the first row.
count
The number of rows to hide. If null, a single row will be hidden when startIndex is specified and otherwise, all rows will be hidden.
Exceptions
ExceptionDescription
System.ArgumentExceptionOccurs when the startIndex is less than 0.
System.ArgumentExceptionOccurs when the count is less than 0.
System.ArgumentExceptionOccurs when the startIndex plus count is greater than the number of rows in the worksheet.
Requirements

Target Platforms: Android 4.4+, iOS 8+

Development Environments: Visual Studio 2015+, Visual Studio for Mac Preview, Xamarin for Visual Studio 4.2+

See Also