NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

RichTextBox LinkClick Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the LinkClick event.

[Visual Basic]
Private Sub RichTextBoxName_LinkClick( _
   ByVal sender As Object, _
   ByVal e As LinkClickEventArgs _
)
[C#]
private void RichTextBoxName_LinkClick(
   object sender,
   LinkClickEventArgs e
);
[C++]
private: void RichTextBoxName_LinkClick(
   Object* sender,
   LinkClickEventArgs* e
);
[JScript]
private RichTextBoxName_LinkClick(
   sender : Object,
   e : LinkClickEventArgs
);

Parameters

sender
The source of the event.
e
A LinkClickEventArgs that contains the event data. The following LinkClickEventArgs properties provide information specific to this event.
Property Description
LinkText
Gets the text of the link being clicked.

See Also

RichTextBox Class | RichTextBox MembersTopic | System.WinForms Namespace