C# Class WaveEngine.Components.UI.ChangedEventArgs

Changed events args class
Inheritance: System.EventArgs
Afficher le fichier Open project: WaveEngine/Components Class Usage Examples

Méthodes publiques

Свойство Type Description
NewValue int
OldValue int

Méthodes publiques

Méthode Description
ChangedEventArgs ( int oldValue, int newValue ) : System

Initializes a new instance of the ChangedEventArgs class.

Method Details

ChangedEventArgs() public méthode

Initializes a new instance of the ChangedEventArgs class.
public ChangedEventArgs ( int oldValue, int newValue ) : System
oldValue int The old value.
newValue int The new value.
Résultat System

Property Details

NewValue public_oe property

The new value
public int NewValue
Résultat int

OldValue public_oe property

The old value
public int OldValue
Résultat int