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.OnCustomDrawTableViewCommonCell Event

In This Article

Enables you to implement a custom draw routine for helper visual elements within a Table View worksheet.

#Declaration

Delphi
property OnCustomDrawTableViewCommonCell: TdxSpreadSheetCustomDrawTableViewCommonCellEvent read; write;

#Remarks

This event is occurs before drawing various helper cell-related visual elements within a Table View worksheet, such as frozen pane separators.

The Sender parameter specifies the Table View worksheet in which the painting operation is performed.

The ACanvas parameter specifies the drawing surface.

The AViewInfo parameter returns ViewInfo information for painting a helper cell-related visual element.

The AHandled parameter specifies whether default painting is required. Passing True as the AHandled parameter prevents the default painting of helper cell-related visual elements, allowing you to provide a custom painter instead.

See Also