Class TabPanelPropertyChangedEventArgs
The class that contains data for the PropertyChanged event.
Inheritance
System.Object
TabPanelPropertyChangedEventArgs
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.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class TabPanelPropertyChangedEventArgs
Constructors
TabPanelPropertyChangedEventArgs(String, Object, Object)
Creates a new instance of the TabPanelPropertyChangedEventArgs class.
Declaration
public TabPanelPropertyChangedEventArgs(string affectedProperty, object oldValue, object newValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | affectedProperty | The affected property. |
System.Object | oldValue | The old value for the property. |
System.Object | newValue | The new value for the property. |
Properties
NewValue
Returns the new value of the property.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
OldValue
Returns the old value of the property.
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |
PropertyName
Returns the property that was changed.
Declaration
public string PropertyName { get; }
Property Value
Type |
---|
System.String |