1 write to point2
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Connector.cs (1)
2585
this.
point2
= point2;
14 references to point2
System.Workflow.ComponentModel (14)
AuthoringOM\Design\Connector.cs (14)
2586
this.orientation = ((this.point1.X == this.
point2
.X) ? Orientation.Vertical : Orientation.Horizontal);
2601
return this.
point2
;
2618
return (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));
2655
int k2 = (this.orientation == Orientation.Horizontal) ? this.
point2
.X : this.
point2
.Y;
2704
Debug.Assert(!(p != this.point1 && p != this.
point2
), "wrong extension requested");
2705
if (p != this.point1 && p != this.
point2
)
2710
int k2 = (this.orientation == Orientation.Horizontal) ? this.
point2
.X : this.
point2
.Y;
2770
return (this.point1 == segment.A && this.
point2
== segment.B && Orientation == segment.Orientation);
2775
return this.point1.GetHashCode() ^ this.
point2
.GetHashCode() ^ Orientation.GetHashCode();