[]
Gets or sets whether automatic row-height fitting after loading the file is disabled.
When this property is true, row heights are not auto-fitted after the workbook is opened. The default value is false.
public bool DoNotAutoFitAfterOpened { get; set; }
Public Property DoNotAutoFitAfterOpened As Boolean
XlsxOpenOptions options = new XlsxOpenOptions();
options.DoNotAutoFitAfterOpened = true;
bool doNotAutoFit = options.DoNotAutoFitAfterOpened;
workbook.Open("path/to/workbook.xlsx", options);