Overload | Description |
---|---|
AutoFit(Double,Double,Int32,Int32) | Identifies the start and end of the AutoFit's range by using Ids. |
AutoFit(Double,Double,String,String) | Identifies the start and end of the AutoFit's range by using string Ids. |
Overload | Description |
---|---|
AutoFit(Double,Double,Int32,Int32) | Identifies the start and end of the AutoFit's range by using Ids. |
AutoFit(Double,Double,String,String) | Identifies the start and end of the AutoFit's range by using string Ids. |
using( var workbook = Workbook.Create( "test.xlsx" ) ) { // Get the first worksheet. A workbook contains at least 1 worksheet. var worksheet = workbook.Worksheets[ 0 ]; worksheet.Cells[ "D6" ].Value = "This row has an autoFit."; worksheet.Rows[ "D" ].AutoFit(); // Save workbook to disk. workbook.Save(); }
Target Platforms: Windows 11, Windows 10, 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