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

TdxCustomSpreadSheet.OnCustomDrawTableViewCell Event

In This Article

Enables you to implement a custom draw routine for cells within a Table View worksheet.

#Declaration

Delphi
property OnCustomDrawTableViewCell: TdxSpreadSheetCustomDrawTableViewCellEvent read; write;

#Remarks

This event is occurs every time a cell is about to be drawn.

The Sender parameter specifies the Table View worksheet that raised the event.

The ACanvas parameter specifies the drawing surface.

The AViewInfo parameter returns ViewInfo information required to draw the processed cell.

The AHandled parameter specifies if built-in draw routines are executed. Assign True to the AHandled parameter to disable built-in draw routines.

See Also