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

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: IDateRangeINotifyPropertyChanged

Inherited Members PropertyChangedBase.OnPropertyChanged(PropertyChangedEventArgs)PropertyChangedBase.OnPropertyChanged(string)PropertyChangedBase.OnPropertyChanged<T>(Expression<Func<T>>)PropertyChangedBase.PropertyChanged

Properties

Gets or sets the end.

C#
public DateTime End { get; set; }
Property Value:

The end.

Implements: IDateRange.End

Gets or sets a value determining whether the relation is from the Source's start or end.

C#
public bool IsRelationFromEnd { get; set; }
Property Value:

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; }
Property Value:

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; }
Property Value:

The start.

Implements: IDateRange.Start

Gets the IGanttTask where the relation ends.

C#
public IGanttTask Target { get; set; }