Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RowCollection.AutoFit(Int32, Int32) Method

Adjusts the height of rows to accommodate cell content.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

void AutoFit(
    int first,
    int last
)

#Parameters

Name Type Description
first Int32

An integer value specifying the zero-based index of the first row to be automatically resized.

last Int32

An integer value specifying the zero-based index of the last row to be automatically resized.

#Remarks

To automatically fit a single row height to the content, use the Row.AutoFit method.

To set the row height value in required units of measurement, use the Row.Height property (see the How to: Specify Row Height or Column Width example).

See Also