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