Class
ItemStyleChangingEventArgs

Represents event data for the following events: ItemStyleChanging

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class ItemStyleChangingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsItemStyleChangingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

ItemStyleChangingEventArgs(RadElement, RadRibbonBarGroup, RadProperty, object, object, ItemStyleContext)

Creats a new instance of the ItemStyleChangingEventArgs class.

Declaration

cs-api-definition
public ItemStyleChangingEventArgs(RadElement element, RadRibbonBarGroup group, RadProperty property, object oldValue, object newValue, ItemStyleContext context)

Parameters

element

RadElement

The element which is about to be changed.

group

RadRibbonBarGroup

The group which element is changing.

property

RadProperty

The property which is changing.

oldValue

object

The old value of the proeprty.

newValue

object

The new value of the proeprty.

context

ItemStyleContext

The new value of the proeprty.

Properties

Context

Gets the context in which the RadProperty in changing.

Declaration

cs-api-definition
public ItemStyleContext Context { get; }

Property Value

ItemStyleContext

Element

Gets the element which property is about to be changed.

Declaration

cs-api-definition
public RadElement Element { get; }

Property Value

RadElement

Group

Gets the group which element is about to be changed.

Declaration

cs-api-definition
public RadRibbonBarGroup Group { get; }

Property Value

RadRibbonBarGroup

NewValue

Gets or sets the new value of the property.

Declaration

cs-api-definition
public object NewValue { get; set; }

Property Value

object

OldValue

Gets the old value of the property.

Declaration

cs-api-definition
public object OldValue { get; }

Property Value

object

Property

Gets the property which is about to be changed.

Declaration

cs-api-definition
public RadProperty Property { get; }

Property Value

RadProperty