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

Raises the OnPaint event.

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

Parameters

e
[To be supplied.]

Remarks

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

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

See Also

LinkLabel Class | LinkLabel Members | System.WinForms Namespace | OnPaint | OnPaint | PaintEventArgs | RichControl