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!

LinkLabel.OnLinkClicked

Raises the OnLinkClicked event.

[Visual Basic]
Overridable Protected Sub OnLinkClicked( _
   ByVal e As LinkLabelLinkClickedEventArgs _
)
[C#]
protected virtual void OnLinkClicked(
   LinkLabelLinkClickedEventArgs e
);
[C++]
protected: virtual void OnLinkClicked(
   LinkLabelLinkClickedEventArgs* e
);
[JScript]
protected function OnLinkClicked(
   e : LinkLabelLinkClickedEventArgs
);

Parameters

e
A LinkLabelLinkClickedEventArgs that contains the event data.

Remarks

Raising an event invokes the event-handling method through a delegate. For more information, see TBD.

Notes to Inheritors: When overriding OnLinkClicked in a derived class, be sure to call the base class's OnLinkClicked method.

See Also

LinkLabel Class | LinkLabel Members | System.WinForms Namespace | OnLinkClicked | LinkLabelLinkClickedEventArgs | OnLinkClicked