Class ReportDetail.LabelChangedEventArgs
The LabelChanged event needs to pass two integers to the event sink.
Inheritance
System.Object
System.EventArgs
ReportDetail.LabelChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: WizardWrx
Assembly: WizardWrx.Core.dll
Syntax
public class LabelChangedEventArgs : EventArgs
Constructors
| Improve this Doc View SourceLabelChangedEventArgs(Int32, Int32)
LabelChangedEventArgs has one public constructor, which creates and fully initializes the instance.
Declaration
public LabelChangedEventArgs(int pintNewLength, int pintOldLength)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | pintNewLength | The new length can't simply be added. |
| System.Int32 | pintOldLength | The old length can bear any relation to the new length. |
Properties
| Improve this Doc View SourceNewLength
The new length is added to the accumulated total.
Declaration
public int NewLength { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
OldLength
The old length is subtracted from the total.
Declaration
public int OldLength { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |