This documentation is archived and is not being maintained.
PropertyValueChangedEventHandler Delegate
.NET Framework 1.1
The event handler class that is invoked when a property in the grid is modified by the user.
[Visual Basic] <Serializable> Public Delegate Sub PropertyValueChangedEventHandler( _ ByVal s As Object, _ ByVal e As PropertyValueChangedEventArgs _ ) [C#] [Serializable] public delegate void PropertyValueChangedEventHandler( object s, PropertyValueChangedEventArgs e ); [C++] [Serializable] public __gc __delegate void PropertyValueChangedEventHandler( Object* s, PropertyValueChangedEventArgs* e );
[JScript] In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.
Parameters [Visual Basic, C#, C++]
The declaration of your event handler must have the same parameters as the PropertyValueChangedEventHandler delegate declaration.
- s
- The source of the event.
- e
- A PropertyValueChangedEventArgs that contains the event data.
Requirements
Namespace: System.Windows.Forms
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
See Also
Show: