Class ItemDataBindingEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class ItemDataBindingEventArgs : EventArgs
Constructors
ItemDataBindingEventArgs(RadItem, Object)
Takes as parameters the RadItem that is binding and the System.Object that is being bound to the RadItem.
Declaration
public ItemDataBindingEventArgs(RadItem dataBindingItem, object dataItem)
Parameters
|
RadItem
dataBindingItem
The RadItem that is binding. |
|
System.Object
dataItem
The object that is being bound to the DataBoundItem. |
Properties
DataBindingItem
Gets the RadItem that is bound.
Declaration
public RadItem DataBindingItem { get; }
Property Value
|
RadItem
|
DataItem
Gets the object that is being bound to the DataBoundItem.
Declaration
public object DataItem { get; }
Property Value
|
System.Object
|
NewBindingItem
Gets the RadItem that was swapped with a new RadItem.
Declaration
public RadItem NewBindingItem { get; set; }
Property Value
|
RadItem
|