Class BeforeValueChangedEventArgs
Message class which can be sent to the user before property value changes. On sending the class, the property must not be changed.
Inheritance
System.Object
System.EventArgs
BeforeValueChangedEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.HTMLUI
Assembly: Syncfusion.HTMLUI.Windows.dll
Syntax
public class BeforeValueChangedEventArgs : EventArgs
Constructors
BeforeValueChangedEventArgs(String, ValueChangedEventArgs)
Initializes a new instance of the BeforeValueChangedEventArgs class
Declaration
public BeforeValueChangedEventArgs(string name, ValueChangedEventArgs args)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | string value |
ValueChangedEventArgs | args | ValueChangedEventArgs instance |
Properties
Empty
Gets an empty instance of the class.
Declaration
public static BeforeValueChangedEventArgs Empty { get; }
Property Value
Type |
---|
BeforeValueChangedEventArgs |
Name
Gets the name of the property which will be changed.
Declaration
public string Name { get; }
Property Value
Type |
---|
System.String |
Values
Gets the old and new value. Old value of property is still not replaced by message class sender.
Declaration
public ValueChangedEventArgs Values { get; }
Property Value
Type |
---|
ValueChangedEventArgs |