- args
- An EventArgs that contains the event data.
| Visual Basic (Declaration) | |
|---|---|
Protected Overridable Sub OnUIChanged( _ ByVal args As MedicalViewerUIChangedEventArgs _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As MedicalViewerCell Dim args As MedicalViewerUIChangedEventArgs instance.OnUIChanged(args) | |
| C# | |
|---|---|
protected virtual void OnUIChanged( MedicalViewerUIChangedEventArgs args ) | |
| C++/CLI | |
|---|---|
protected: virtual void OnUIChanged( MedicalViewerUIChangedEventArgs^ args ) | |
Parameters
- args
- An EventArgs that contains the event data.
When overriding OnUIChanged in a derived class, be sure to call the base class's OnUIChanged method so that registered delegates receive the event.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code