Base:
property
SelectableObject
System.Workflow.ComponentModel.Design.HitTestInfo.SelectableObject
10 references to SelectableObject
System.Workflow.Activities (2)
Designers\EventHandlersDesigner.cs (2)
69return new ConnectorHitTestInfo(this, HitTestLocations.Designer, 0).SelectableObject; 85return new ConnectorHitTestInfo(this, HitTestLocations.Designer, GetConnectors().GetLength(0) - 1).SelectableObject;
System.Workflow.ComponentModel (8)
AuthoringOM\Behaviors\ExceptionHandlersDesigner.cs (2)
75return new ConnectorHitTestInfo(this, HitTestLocations.Designer, 0).SelectableObject; 91return new ConnectorHitTestInfo(this, HitTestLocations.Designer, GetConnectors().GetLength(0) - 1).SelectableObject;
AuthoringOM\Design\SequenceDesignerAccessibleObject.cs (6)
178state |= (selectionService.GetComponentSelected(this.connectorHitInfo.SelectableObject)) ? AccessibleStates.Selected : AccessibleStates.Selectable; 179state |= (selectionService.PrimarySelection == this.connectorHitInfo.SelectableObject) ? AccessibleStates.Focused : AccessibleStates.Focusable; 190selectionService.SetSelectedComponents(new object[] { this.connectorHitInfo.SelectableObject }, SelectionTypes.Replace); 232selectionService.SetSelectedComponents(new object[] { this.connectorHitInfo.SelectableObject }, SelectionTypes.Replace); 234selectionService.SetSelectedComponents(new object[] { this.connectorHitInfo.SelectableObject }, SelectionTypes.Add); 236selectionService.SetSelectedComponents(new object[] { this.connectorHitInfo.SelectableObject }, SelectionTypes.Remove);