Skip to main content

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

TdxGridReportLink.OnGetCellHeight Event

In This Article

Enables you to adjust the height of any cell in a report.

#Declaration

Delphi
property OnGetCellHeight: TdxGridReportLinkGetCellHeightEvent read; write;

#Remarks

This event occurs every time the report link calculates the height of a cell in the report.

The Sender parameter provides access to the report link that raised an OnGetCellHeight event, while the AView parameter provides access to the source grid Table View.

Use the ARecord and AItem parameters to identify the grid record and table item to which the target cell belongs.

You can use the AHeight parameter to:

  • Identify the calculated pixel height of the target cell.

  • Assign a new height for the cell.

See Also