IGLib
1.7.2
The IGLib base library for development of numerical, technical and business applications.
|
Event arguments for events bearing information about an index (of type int) that has changed. More...
Public Member Functions | |
IndexChangeEventArgs () | |
Constructs event arguments with old and new value unspecified. See ValueChangeEventArgs{ValueType}ValueChangeEventArgs(). More... | |
IndexChangeEventArgs (int oldValue, int newValue, bool oldValueDefined=true, bool newValueDefined=true) | |
Constructs event args with specific old and new value (oldValue and newValue ). More... | |
![]() | |
ValueChangeEventArgs () | |
Default constructor, leaves old and new values unspecified. More... | |
ValueChangeEventArgs (ValueType oldValue, ValueType newValue, bool oldValueDefined=true, bool newValueDefined=true) | |
Constructs event args with specific old and new value (oldValue and newValue ). More... | |
Additional Inherited Members | |
![]() | |
ValueType | Old [get, set] |
Old value of the item that has changed. More... | |
bool | OldDefined [get, set] |
Indicates whether the old value of the item is defined. More... | |
ValueType | New [get, set] |
New value of the item that has changed. More... | |
bool | NewDefined [get, set] |
Indicates whether the old value of the item is defined. More... | |
Event arguments for events bearing information about an index (of type int) that has changed.
Old and new values should normally be set via constructor.
Fields New and Old contain the new and the old value of the item whose value has changed. Either of them can be defined or not, and flags NewDefined and OldDefined specify that.
See also the generic base class, ValueChangeEventArgs{ValueType}.
|
inline |
Constructs event arguments with old and new value unspecified. See ValueChangeEventArgs{ValueType}ValueChangeEventArgs().
public ValueChangeEventArgs() : base() { }
Default constructor, leaves old and new values unspecified.
To specify new and old values in constructor, use ValuChangedEventArgs(double, double) or ValuChangedEventArgs(int old, int new, bool oldDefined, bool newDefined)
See also ValueChangeEventArgs{ValueType}()
|
inline |
Constructs event args with specific old and new value (oldValue and newValue ).
Optional arguments oldValueDefined and newValueDefined can specify whether the values have actually been defined (default is true, so one can call constructor without these flags, implying that both old and new values are specified).
See also ValueChangeEventArgs{ValueType}().
oldValue | Old value of the item that has changed. |
newValue | |
oldValueDefined | |
newValueDefined |