Class ValueChangingEventArgs
Provides data for the ZoomFactorChanging event of the EditControl control
Inheritance
System.Object
ValueChangingEventArgs
Namespace: Syncfusion.Windows.Forms.Edit
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class ValueChangingEventArgs : CancelEventArgs
Constructors
ValueChangingEventArgs(Single, Single)
Initializes a new instance of the ValueChangingEventArgs class.
Declaration
public ValueChangingEventArgs(float oldValue, float newValue)
Parameters
Type | Name | Description |
---|---|---|
System.Single | oldValue | previous zoom factor of EditControl |
System.Single | newValue | new zoom factor of EditControl |
Properties
NewValue
Gets or sets a value of new ZoomFactor value
Declaration
public float NewValue { get; set; }
Property Value
Type |
---|
System.Single |
OldValue
Gets or sets a value of old ZoomFactor value
Declaration
public float OldValue { get; set; }
Property Value
Type |
---|
System.Single |