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.OnDoubleClick

Raises the System.WinForms.Control.DoubleClick event.

[Visual Basic]
Overrides Protected Sub OnDoubleClick( _
   ByVal e As EventArgs _
)
[C#]
protected override void OnDoubleClick(
   EventArgs e
);
[C++]
protected: override void OnDoubleClick(
   EventArgs* e
);
[JScript]
protected override function OnDoubleClick(
   e : EventArgs
);

Parameters

e
An EventArgs 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 OnDoubleClick in a derived class, be sure to call the base class's OnDoubleClick method.

See Also

LinkLabel Class | LinkLabel Members | System.WinForms Namespace | Control | System.WinForms.Control.DoubleClick | EventArgs | OnDoubleClick