Software Development Network>> Visual Studio>> Finding the associated presentation element (CTP June)
How can i find the associated shape of a model in the new version (old AssociatedPresentationElements property)
Thank you,
Malain
Here's a way:
ModelElement
...
LinkedElementCollection<PresentationElement> presentations =
PresentationViewsSubject.GetPresentation(myElement);
Steve Cook [MSFT]
Finding the associated presentation element (CTP June)
Crepuscular
Malain
Here's a way:
ModelElement
myElement = null;...
LinkedElementCollection<PresentationElement> presentations =
PresentationViewsSubject.GetPresentation(myElement);
Steve Cook [MSFT]