Version

AutoFitWidth(Int32,Int32) Method

Sets the width to the extent required to display all of the contents for the specified range of rows.
Syntax
public void AutoFitWidth( 
   int startRowIndex,
   int endRowIndex
)

Parameters

startRowIndex
A 0-based index of the first row whose contents are to be calculated
endRowIndex
A 0-based index of the last row whose contents are to be calculated
Exceptions
ExceptionDescription
System.InvalidOperationExceptionThe column is not associated with a Worksheet such as when the column has been deleted or the Worksheet is not associated with a Workbook such as when the Worksheet has been deleted.
System.ArgumentOutOfRangeExceptionThe startRowIndex must be greater than or equal to 0, less than or equal to the endRowIndex and less than or equal to the Count of the Rows in the Worksheet. Similarly the endRowIndex must be greater than or equal to the startRowIndex and less than the WorksheetRowCollection.MaxCount of the Worksheet's Rows collection which depends upon the CurrentFormat
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