Class StylePropertyChangedEventArgs<T>
Provides data for the StylePropertyChanged event in the RichTextBox.
Inheritance
System.Object
StylePropertyChangedEventArgs<T>
Namespace: Telerik.Windows.Documents.RichTextBoxCommands
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class StylePropertyChangedEventArgs<T> : EventArgs
Type Parameters
T
|
Constructors
StylePropertyChangedEventArgs(T, T)
Declaration
public StylePropertyChangedEventArgs(T oldValue, T newValue)
Parameters
T
oldValue
|
T
newValue
|
Properties
NewValue
Represents the new value of a style property that has been changed.
Declaration
public T NewValue { get; }
Property Value
T
|
OldValue
Gets the old value of the style property that has changed.
Declaration
public T OldValue { get; }
Property Value
T
The old value of the style property. |