Udostępnij za pośrednictwem


Metoda PresentationViewsSubject.GetPresentation —

Pobiera PresentationElements, który wyświetlać element modelu danej domeny.

Przestrzeń nazw:  Microsoft.VisualStudio.Modeling.Diagrams
Zestaw:  Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (w Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll)

Składnia

'Deklaracja
Public Shared Function GetPresentation ( _
    element As ModelElement _
) As LinkedElementCollection(Of PresentationElement)
public static LinkedElementCollection<PresentationElement> GetPresentation(
    ModelElement element
)

Parametry

Wartość zwracana

Typ: Microsoft.VisualStudio.Modeling.LinkedElementCollection<PresentationElement>

Uwagi

Ta metoda umożliwia nawigowanie z elementem modelu domeny lub relacji do kształtu lub łącze, które reprezentuje on w interfejsie użytkownika.Chyba że dokonano dostosowania głównych DSL, będzie istnieć jeden element prezentacji dla każdego elementu domeny.W niektórych przypadkach podczas wyświetlania jest inicjowany, może występować żaden element ekranu.Jeśli nie zdefiniowano mapowania o Element domeny dla domeny klasy w Państwa definicji DSL, będzie się żaden element ekranu.

Mapowanie elementu domeny dla określonej klasy element domeny, określa klasy element prezentacji — kształt lub łącze.

Przykłady

ExampleElement element = ...;
ExampleShape shape = PresentationViewsSubject.GetPresentation(element).FirstOrDefault() as ExampleShape;
if (shape != null) {...}

// A domain relationship:
ExampleElementReferencesTargets relationship = ...; 
// In the DSL Definition, this relationship is mapped to the following BinaryLinkShape:
ExampleConnector link = PresentationViewsSubject.GetPresentation(relationship).FirstOrDefault() as ExampleConnector;
if (link != null) {...}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

PresentationViewsSubject Klasa

Przestrzeń nazw Microsoft.VisualStudio.Modeling.Diagrams