5 writes to point1
System.Data (5)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (5)
1076
this.
point1
= point1;
1194
this.
point1
= Point.Add(this.point1, new Vector(extendedLength, 0));
1199
this.
point1
= Point.Add(this.point1, new Vector(-extendedLength, 0));
1207
this.
point1
= Point.Add(this.point1, new Vector(0, extendedLength));
1212
this.
point1
= Point.Add(this.point1, new Vector(0, -extendedLength));
25 references to point1
System.Data (25)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (25)
1078
this.orientation = (this.
point1
.X.IsEqualTo(this.point2.X) ? Orientation.Vertical : Orientation.Horizontal);
1085
return this.
point1
;
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))
1182
double k1 = ((this.orientation == Orientation.Horizontal) ? this.
point1
.X : this.
point1
.Y);
1192
if (this.
point1
.X > this.point2.X)
1194
this.point1 = Point.Add(this.
point1
, new Vector(extendedLength, 0));
1199
this.point1 = Point.Add(this.
point1
, new Vector(-extendedLength, 0));
1205
if (this.
point1
.Y > this.point2.Y)
1207
this.point1 = Point.Add(this.
point1
, new Vector(0, extendedLength));
1212
this.point1 = Point.Add(this.
point1
, new Vector(0, -extendedLength));
1225
return this.
point1
.GetHashCode() ^ this.point2.GetHashCode() ^ Orientation.GetHashCode();
1253
if ((this.orientation == Orientation.Horizontal && !p.Y.IsEqualTo(this.
point1
.Y)) || (this.orientation == Orientation.Vertical && !p.X.IsEqualTo(this.
point1
.X)))
1259
double k1 = (this.orientation == Orientation.Horizontal) ? this.
point1
.X : this.
point1
.Y;
1283
return (this.orientation == Orientation.Horizontal) ? p.Y.IsEqualTo(this.
point1
.Y) : p.X.IsEqualTo(this.
point1
.X);