New to Telerik UI for WPFStart a free 30-day trial

Describes the event arguments for the HyperlinkToolTipShowing event.

Definition

Namespace:Telerik.Windows.Documents.UI

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class HyperlinkToolTipShowingEventArgs : EventArgs

Inheritance: objectEventArgsHyperlinkToolTipShowingEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the HyperlinkToolTipShowingEventArgs class.

C#
public HyperlinkToolTipShowingEventArgs(string toolTip, HyperlinkRangeStart hyperlinkAnnotationMarker)
Parameters:toolTipstringhyperlinkAnnotationMarkerHyperlinkRangeStart

Properties

Gets or sets a bool value indicating whether to cancel the showing of the tooltip.

C#
public bool Cancel { get; set; }

Gets the HyperlinkRangeStart annotation associated with the hyperlink.

C#
public HyperlinkRangeStart HyperlinkAnnotationMarker { get; }

Gets or sets a string that represents the tooltip to be shown.

C#
public string ToolTip { get; set; }
Remarks:

By default, this property contains the value of the original tooltip of the hyperlink. Use it to change the tooltip string.