System.Windows.Forms (system.windows.forms.dll) | class |
This class encapsulates the event arguments for the
RichTextBox.LinkClicked event. It allows you to
retrieve the LinkText for the particular link that
was clicked. See LinkLabelLinkClickedEventArgs for
the equivalent for the LinkLabel.
public class LinkClickedEventArgs : EventArgs {
// Public Constructors
public LinkClickedEventArgs(string linkText);
// Public Instance Properties
public string LinkText{get; }
}
Hierarchy
System.Object System.EventArgs
LinkClickedEventArgs
Passed To
LinkClickedEventHandler.{BeginInvoke(),
Invoke()}, RichTextBox.OnLinkClicked()
![](data/FILES/pixel.gif) |