xtrareports-devexpress-dot-xtrareports-dot-ui-dot-crosstab-dot-xrcrosstabcell-8f221742.md
Gets or sets how the cell’s height changes to fit its content.
Namespace : DevExpress.XtraReports.UI.CrossTab
Assembly : DevExpress.XtraReports.v25.2.dll
NuGet Package : DevExpress.Reporting.Core
[DefaultValue(AutoSizeMode.None)]
[SRCategory(ReportStringId.CatBehavior)]
public AutoSizeMode RowAutoHeightMode { get; set; }
<DefaultValue(AutoSizeMode.None)>
<SRCategory(ReportStringId.CatBehavior)>
Public Property RowAutoHeightMode As AutoSizeMode
| Type | Default | Description |
|---|---|---|
| AutoSizeMode | None |
A value that specifies how the cell’s height changes to fit its content.
|
Available values:
| Name | Description |
|---|---|
| None |
The control’s size remains unchanged.
| | GrowOnly |
The control’s size can be automatically increased to fit its content.
| | ShrinkOnly |
The control’s size can be automatically decreased to fit its content.
| | ShrinkAndGrow |
The control’s size can be automatically increased or decreased to fit its content.
|
Use this property to change the row height to fit the content of all its cells. If you change this property for one cell, this value applies to all the cells in the row.
You can specify this property’s value in the Properties window.
None
GrowOnly
ShrinkOnly
ShrinkAndGrow
See Also