2 writes to initialDragPoint
System.Workflow.ComponentModel (2)
AuthoringOM\Design\MessageFilters\ConnectionManager.cs (2)
94this.initialDragPoint = new Point?(logicalPoint); 373this.initialDragPoint = null;
6 references to initialDragPoint
System.Workflow.ComponentModel (6)
AuthoringOM\Design\MessageFilters\ConnectionManager.cs (6)
106bool processedMessage = (this.initialDragPoint != null); 124if (!EditingInProgress && this.initialDragPoint != null && 125(Math.Abs(this.initialDragPoint.Value.X - logicalPoint.X) > SystemInformation.DragSize.Width || 126Math.Abs(this.initialDragPoint.Value.Y - logicalPoint.Y) > SystemInformation.DragSize.Height)) 128BeginEditing(GetConnectorEditor(this.initialDragPoint.Value, this.dragPointHitInfo), this.initialDragPoint.Value);