Class ItemStyleChangingEventArgs
Represents event data for the following events: ItemStyleChanging
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class ItemStyleChangingEventArgs : CancelEventArgs
Constructors
ItemStyleChangingEventArgs(RadElement, RadRibbonBarGroup, RadProperty, Object, Object, ItemStyleContext)
Creats a new instance of the ItemStyleChangingEventArgs class.
Declaration
public ItemStyleChangingEventArgs(RadElement element, RadRibbonBarGroup group, RadProperty property, object oldValue, object newValue, ItemStyleContext context)
Parameters
RadElement
element
The element which is about to be changed. |
RadRibbonBarGroup
group
The group which element is changing. |
RadProperty
property
The property which is changing. |
System.Object
oldValue
The old value of the proeprty. |
System.Object
newValue
The new value of the proeprty. |
ItemStyleContext
context
The new value of the proeprty. |
Properties
Context
Gets the context in which the RadProperty in changing.
Declaration
public ItemStyleContext Context { get; }
Property Value
ItemStyleContext
|
Element
Gets the element which property is about to be changed.
Declaration
public RadElement Element { get; }
Property Value
RadElement
|
Group
Gets the group which element is about to be changed.
Declaration
public RadRibbonBarGroup Group { get; }
Property Value
RadRibbonBarGroup
|
NewValue
Gets or sets the new value of the property.
Declaration
public object NewValue { get; set; }
Property Value
System.Object
|
OldValue
Gets the old value of the property.
Declaration
public object OldValue { get; }
Property Value
System.Object
|
Property
Gets the property which is about to be changed.
Declaration
public RadProperty Property { get; }
Property Value
RadProperty
|