1 write to DestinationVertex
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\LinkBase.cs (1)
32
this.
DestinationVertex
= destinationVertex;
17 references to DestinationVertex
System.Data (17)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeItemHelper.cs (1)
33
BackPointer backPointer = this.extraPropertyBackPointers.FirstOrDefault<BackPointer>((bp) => bp.
DestinationVertex
== parent && propertyName == bp.PropertyName);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (16)
1062
return edge.
DestinationVertex
;
1072
return backPointer.
DestinationVertex
;
1082
((IModelTreeItem)edge.
DestinationVertex
).RemoveSource(modelProperty);
1088
((IModelTreeItem)edge.
DestinationVertex
).RemoveSource(edge.SourceVertex, edge.PropertyName);
1094
((IModelTreeItem)edge.
DestinationVertex
).RemoveParent(edge.SourceVertex);
1105
((IModelTreeItem)edge.
DestinationVertex
).SetSource(modelProperty);
1109
((IModelTreeItem)edge.
DestinationVertex
).ExtraPropertyBackPointers.Add(new BackPointer(edge.PropertyName, edge.
DestinationVertex
, edge.SourceVertex));
1115
((IModelTreeItem)edge.
DestinationVertex
).SetParent(edge.SourceVertex);
1125
foreach (ModelProperty p in edge.
DestinationVertex
.Sources)
1133
foreach (BackPointer bp in ((IModelTreeItem)edge.
DestinationVertex
).ExtraPropertyBackPointers)
1135
if (bp.
DestinationVertex
== from && bp.PropertyName == edge.PropertyName)
1146
return ((IModelTreeItem)edge.
DestinationVertex
).ItemBackPointers.Contains(from);
1154
return ((IModelTreeItem)backPointer.
DestinationVertex
).ModelPropertyStore[backPointer.PropertyName] == backPointer.SourceVertex;
1160
ModelItemCollection collection = backPointer.
DestinationVertex
as ModelItemCollection;
1166
ModelItemDictionary dictionary = (ModelItemDictionary)backPointer.
DestinationVertex
;