2 writes to activeEditPoint
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Connector.cs (2)
874this.activeEditPoint = editPointHit; 909this.activeEditPoint = null;
36 references to activeEditPoint
System.Workflow.ComponentModel (36)
AuthoringOM\Design\Connector.cs (36)
817if (this.activeEditPoint != null) 818return this.activeEditPoint.EditedConnectionPoint; 835if (this.activeEditPoint != null) 878return (this.activeEditPoint != null); 883if (this.activeEditPoint == null) 899if (this.activeEditPoint == null) 908EditPoint activeEditPoint = this.activeEditPoint; 1009if (this.activeEditPoint != null) 1118if (this.activeEditPoint != null) 1120int activeEditPointIndex = this.editPoints.IndexOf(this.activeEditPoint); 1127float slopeOfLine = DesignerGeometryHelper.SlopeOfLineSegment(previous.Location, this.activeEditPoint.Location); 1130int editPointOffset = Convert.ToInt32(DesignerGeometryHelper.DistanceBetweenPoints(previous.Location, (next != null) ? next.Location : this.activeEditPoint.Location)) / 4; 1132editPointOffset *= (previous.Location.X < this.activeEditPoint.Location.X) ? 1 : -1; 1134editPointOffset *= (previous.Location.Y < this.activeEditPoint.Location.X) ? 1 : -1; 1136activeEditPointIndex = this.editPoints.IndexOf(this.activeEditPoint); 1144float slopeOfLine = DesignerGeometryHelper.SlopeOfLineSegment(this.activeEditPoint.Location, next.Location); 1147int editPointOffset = Convert.ToInt32(DesignerGeometryHelper.DistanceBetweenPoints((previous != null) ? previous.Location : this.activeEditPoint.Location, next.Location)) / 4; 1149editPointOffset *= (this.activeEditPoint.Location.X < next.Location.X) ? -1 : 1; 1151editPointOffset *= (this.activeEditPoint.Location.Y < next.Location.Y) ? -1 : 1; 1153activeEditPointIndex = this.editPoints.IndexOf(this.activeEditPoint); 1160if (this.activeEditPoint.Type == EditPoint.EditPointTypes.ConnectionEditPoint) 1162this.activeEditPoint.Location = newPoint; 1168if (this.activeEditPoint.EditedConnectionPoint.Equals(Target)) 1186else if (this.activeEditPoint.Type == EditPoint.EditPointTypes.MultiSegmentEditPoint) 1191float slopeOfLine = DesignerGeometryHelper.SlopeOfLineSegment(previous.Location, this.activeEditPoint.Location); 1196slopeOfLine = DesignerGeometryHelper.SlopeOfLineSegment(this.activeEditPoint.Location, next.Location); 1201this.activeEditPoint.Location = newPoint; 1208else if (this.activeEditPoint.Type == EditPoint.EditPointTypes.MidSegmentEditPoint) 1220this.activeEditPoint.Location = new Point(this.activeEditPoint.Location.X, newPoint.Y); 1226this.activeEditPoint.Location = new Point(newPoint.X, this.activeEditPoint.Location.Y); 1307if (editPoint != this.activeEditPoint) 1318(this.activeEditPoint != null && this.activeEditPoint.Type == EditPoint.EditPointTypes.ConnectionEditPoint)) 1331this.editPoints[i] == this.activeEditPoint ||