Version

HyperlinkExporting Event

Occurs before the FormattedTextEditor hyperlink export begins.
Syntax
'Declaration
 
Public Event HyperlinkExporting As EventHandler(Of HyperlinkExportingEventArgs)
public event EventHandler<HyperlinkExportingEventArgs> HyperlinkExporting
Event Data

The event handler receives an argument of type HyperlinkExportingEventArgs containing data related to this event. The following HyperlinkExportingEventArgs properties provide information specific to this event.

PropertyDescription
Cancel (Inherited from System.ComponentModel.CancelEventArgs) 
HyperlinkDisplayText Property to get and set the value of the Hyperlink DisplayText before the export begins
Tooltip Property to get and set the value of the Link's Tooltip before the export begins
Url Property to get and set the value of the Url before the export begins
Remarks

The HyperlinkExportingEventArgs.HyperlinkDisplayText is a copy of the original hyperlink which can be manipulated by the user.

The HyperlinkExportingEventArgs.Url is a copy of the original hyperlink which can be manipulated by the user.

The HyperlinkExportingEventArgs.Tooltip is a copy of the original hyperlink which can be manipulated by the user.

This event is fired before all other events when the Export(String,WordDocumentWriter) method is called. You can use it to do any preprocessing before exporting process starts.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also