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

TdxSpreadSheetCellCommentHideEvent Type

The procedural type of a comment autohide notification event.

#Declaration

Delphi
TdxSpreadSheetCellCommentHideEvent = procedure(Sender: TdxSpreadSheetCell; ACommentContainer: TdxSpreadSheetContainer) of object;

#Parameters

Name Type
Sender TdxSpreadSheetCell
ACommentContainer TdxSpreadSheetContainer

#Remarks

Use the Sender parameter to access the commented cell object that raised a TdxSpreadSheetCellCommentHideEvent event. Use the ACommentContainer parameter value to identify and access the comment that has been hidden when the mouse pointer moved out of the worksheet cell that corresponds to the Sender cell object. To access the comment container’s type-specific members, you need to cast the ACommentContainer parameter value to the TdxSpreadSheetCommentContainer class.

A Spreadsheet control’s OnCommentHide event references the TdxSpreadSheetCellCommentHideEvent type.

See Also