New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.RadDiagram.dll

Syntax:

C#
public class DiagramItemDataBoundEventArgs : EventArgs

Inheritance: objectEventArgsDiagramItemDataBoundEventArgs

Inherited Members EventArgs.Empty

Constructors

Takes as parameters the RadItem that is bound and the object that is being bound to the RadItem.

C#
public DiagramItemDataBoundEventArgs(RadDiagramItem dataBoundItem, object dataItem)
Parameters:dataBoundItemRadDiagramItem

The RadItem that is bound.

dataItemobject

The object that is being bound to the DataBoundItem.

Properties

Gets the RadItem that is bound.

C#
public RadDiagramItem DataBoundItem { get; }

Gets the object that is being bound to the DataBoundItem.

C#
public object DataItem { get; }