1 write to point1
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Connector.cs (1)
2584this.point1 = point1;
18 references to point1
System.Workflow.ComponentModel (18)
AuthoringOM\Design\Connector.cs (18)
2586this.orientation = ((this.point1.X == this.point2.X) ? Orientation.Vertical : Orientation.Horizontal); 2593return this.point1; 2618return (this.orientation == Orientation.Horizontal) ? (p.X >= Math.Min(this.point1.X, this.point2.X) && p.X <= Math.Max(this.point1.X, this.point2.X)) : (p.Y >= Math.Min(this.point1.Y, this.point2.Y) && p.Y <= Math.Max(this.point1.Y, this.point2.Y)); 2644return (this.orientation == Orientation.Horizontal) ? p.Y == this.point1.Y : p.X == this.point1.X; 2650if ((this.orientation == Orientation.Horizontal && p.Y != this.point1.Y) || (this.orientation == Orientation.Vertical && p.X != this.point1.X)) 2654int k1 = (this.orientation == Orientation.Horizontal) ? this.point1.X : this.point1.Y; 2704Debug.Assert(!(p != this.point1 && p != this.point2), "wrong extension requested"); 2705if (p != this.point1 && p != this.point2) 2709int k1 = (this.orientation == Orientation.Horizontal) ? this.point1.X : this.point1.Y; 2770return (this.point1 == segment.A && this.point2 == segment.B && Orientation == segment.Orientation); 2775return this.point1.GetHashCode() ^ this.point2.GetHashCode() ^ Orientation.GetHashCode();