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!

RichControl Invalidate Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
An InvalidateEventArgs that contains the event data. The following InvalidateEventArgs properties provide information specific to this event.
Property Description
InvalidRect
Gets a value indicating the Rectangle that contains the invalidated window area.

See Also

RichControl Class | RichControl MembersTopic | System.WinForms Namespace