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