5 writes to point2
System.Data (5)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (5)
1077
this.
point2
= point2;
1195
this.
point2
= Point.Add(this.point2, new Vector(-extendedLength, 0));
1200
this.
point2
= Point.Add(this.point2, new Vector(extendedLength, 0));
1208
this.
point2
= Point.Add(this.point2, new Vector(0, -extendedLength));
1213
this.
point2
= Point.Add(this.point2, new Vector(0, extendedLength));
21 references to point2
System.Data (21)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (21)
1078
this.orientation = (this.point1.X.IsEqualTo(this.
point2
.X) ? Orientation.Vertical : Orientation.Horizontal);
1093
return this.
point2
;
1147
(p.X.IsNoLessThan(Math.Min(this.point1.X, this.
point2
.X)) && p.X.IsNoGreaterThan(Math.Max(this.point1.X, this.
point2
.X))) :
1148
(p.Y.IsNoLessThan(Math.Min(this.point1.Y, this.
point2
.Y)) && p.Y.IsNoGreaterThan(Math.Max(this.point1.Y, this.
point2
.Y)));
1158
return (this.point1.IsEqualTo(segment.A) && this.
point2
.IsEqualTo(segment.B) && Orientation == segment.Orientation);
1169
return this.IsPointOnSegment(segment.point1) || this.IsPointOnSegment(segment.
point2
) || segment.IsPointOnSegment(this.point1) || segment.IsPointOnSegment(this.
point2
);
1176
if (!p.IsEqualTo(this.point1) && !p.IsEqualTo(this.
point2
))
1183
double k2 = ((this.orientation == Orientation.Horizontal) ? this.
point2
.X : this.
point2
.Y);
1192
if (this.point1.X > this.
point2
.X)
1195
this.point2 = Point.Add(this.
point2
, new Vector(-extendedLength, 0));
1200
this.point2 = Point.Add(this.
point2
, new Vector(extendedLength, 0));
1205
if (this.point1.Y > this.
point2
.Y)
1208
this.point2 = Point.Add(this.
point2
, new Vector(0, -extendedLength));
1213
this.point2 = Point.Add(this.
point2
, new Vector(0, extendedLength));
1225
return this.point1.GetHashCode() ^ this.
point2
.GetHashCode() ^ Orientation.GetHashCode();
1260
double k2 = (this.orientation == Orientation.Horizontal) ? this.
point2
.X : this.
point2
.Y;