C# Class WaveEngine.Components.UI.ChangedEventArgs

Changed events args class
Inheritance: System.EventArgs
Mostra file Open project: WaveEngine/Components Class Usage Examples

Public Properties

Property Type Description
NewValue int
OldValue int

Public Methods

Method Description
ChangedEventArgs ( int oldValue, int newValue ) : System

Initializes a new instance of the ChangedEventArgs class.

Method Details

ChangedEventArgs() public method

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.
return System

Property Details

NewValue public_oe property

The new value
public int NewValue
return int

OldValue public_oe property

The old value
public int OldValue
return int