Represents a data item used by RadGanttView to store links.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public class GanttViewLinkDataItem : IDataItem, INotifyPropertyChanged
Inheritance: objectGanttViewLinkDataItem
Implements:
Constructors
C#
public GanttViewLinkDataItem()
Properties
Gets the data bound item of this link.
C#
public object DataBoundItem { get; }
The data bound item.
Gets or sets the end item for this link.
C#
public GanttViewDataItem EndItem { get; set; }
The end item.
Gets the RadGanttViewElement that owns this link.
C#
public RadGanttViewElement GanttViewElement { get; }
The gantt view element.
Gets the points wehre this link will be drawn.
C#
protected List<Point> Lines { get; }
The lines.
Gets or sets the type of this link.
C#
public TasksLinkType LinkType { get; set; }
The type of the link.
Gets or sets the start item for this link.
C#
public GanttViewDataItem StartItem { get; set; }
The start item.
Methods
C#
public virtual void HideEndItemHandle()
C#
public virtual void HideItemsHandles()
C#
public virtual void HideStartItemHandle()
Raises the event.
C#
protected virtual void OnNotifyPropertyChanged(PropertyChangedEventArgs e)
The PropertyChangedEventArgs instance containing the event data.
Raises the event.
C#
protected virtual void OnNotifyPropertyChanged(string name)
The name of the property that changed.
C#
public virtual void ShowEndItemHandle()
C#
public virtual void ShowItemsHandles()
C#
public virtual void ShowStartItemHandle()
Events
Occurs when a property value changes.
C#
public event PropertyChangedEventHandler PropertyChanged
Implements: