[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.XlsxOpenOptions.DoNotAutoFitAfterOpened

DoNotAutoFitAfterOpened Property

DoNotAutoFitAfterOpened

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.

Declaration
public bool DoNotAutoFitAfterOpened { get; set; }
Public Property DoNotAutoFitAfterOpened As Boolean
Examples
XlsxOpenOptions options = new XlsxOpenOptions();
options.DoNotAutoFitAfterOpened = true;
bool doNotAutoFit = options.DoNotAutoFitAfterOpened;
workbook.Open("path/to/workbook.xlsx", options);