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
'Declaration
 
Public Overloads Sub AutoFitWidth( _
   ByVal startRowIndex As Integer, _
   ByVal endRowIndex As Integer _
) 
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: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also