RelationSlot
Class
Class representing a slot of the dragged relation.
Definition
Namespace:Telerik.Windows.Controls.GanttView
Assembly:Telerik.Windows.Controls.GanttView.dll
Syntax:
C#
public class RelationSlot : PropertyChangedBase, INotifyPropertyChanged, IDateRange
Inheritance: objectPropertyChangedBaseRelationSlot
Implements:
Inherited Members
Properties
Gets or sets the end.
C#
public DateTime End { get; set; }
The end.
Implements:
Gets or sets a value determining whether the relation is from the Source's start or end.
C#
public bool IsRelationFromEnd { get; set; }
True if the target is relation is from Source's end; false otherwise.
Gets or sets a value determining whether the relation is to the Target's start or end.
C#
public bool IsRelationToEnd { get; set; }
True if the target is relation is to Target's end; false otherwise.
Gets the IGanttTask from which the relation began.
C#
public IGanttTask Source { get; }
Gets or sets the start.
C#
public DateTime Start { get; set; }
The start.
Implements:
Gets the IGanttTask where the relation ends.
C#
public IGanttTask Target { get; set; }