TdxSpreadSheetHyperlinkExecuteEvent Type
The hyperlink activation event procedural type.
Declaration
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