Wimark.Controls Class Library  

LinkLabelLinkClickedEventHandler Delegate

Represents the method that will handle the LinkClicked event of a LinkLabel.

[Visual Basic]
<Serializable>
Public Delegate Sub LinkLabelLinkClickedEventHandler( _
   ByVal sender As Object, _
   ByVal args As LinkLabelLinkClickedEventArgs _
)
[C#]
[Serializable]
public delegate void LinkLabelLinkClickedEventHandler(
   object sender,
   LinkLabelLinkClickedEventArgs args
);
[C++]
[Serializable]
public __gc __delegate void LinkLabelLinkClickedEventHandler(
   Object* sender,
   LinkLabelLinkClickedEventArgs* args
);

Parameters [Visual Basic, C#, C++]

The declaration of your event handler must have the same parameters as the LinkLabelLinkClickedEventHandler delegate declaration.

sender
The source of the event.
args
A LinkLabelLinkClickedEventArgs that contains the event data.

Requirements

Namespace: Wimark.Controls

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows .NET Server family

Assembly: Wimark.Controls (in Wimark.Controls.dll)

See Also

Wimark.Controls Namespace | LinkLabelLinkClickedEventArgs | LinkLabel