TdxSpreadSheetCellCommentHideEvent Type
The procedural type of a comment autohide notification event.
Declaration
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