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

TdxSpreadSheetHyperlinkExecuteEvent Type

The hyperlink activation event procedural type.

#Declaration

Delphi
TdxSpreadSheetHyperlinkExecuteEvent = procedure(Sender: TdxCustomSpreadSheet; AHyperlink: TdxSpreadSheetHyperlink; var AHandled: Boolean) of object;

#Parameters

Name Type
Sender TdxCustomSpreadSheet
AHyperlink TdxSpreadSheetHyperlink
AHandled Boolean

#Remarks

Use the Sender parameter to access the Spreadsheet or Report Designer control that raised a TdxSpreadSheetHyperlinkExecuteEvent event. To access the control’s class-specific members, cast Sender to the TdxSpreadSheet or TdxSpreadSheetReportDesigner class. You can call the Sender.ClassName class function to identify the actual control class.

Use the AHyperlink parameter to access the activated hyperlink.

You can pass True as the AHandled var parameter to prevent executing the hyperlink activation routine determined by the hyperlink’s ValueType property value.

The Spreadsheet/Report Designer control’s OnHyperlinkExecute event references the TdxSpreadSheetHyperlinkExecuteEvent type.

See Also