PresentationViewsSubject.GetPresentation 方法
取得顯示給定網域模型項目的 PresentationElements。
命名空間: Microsoft.VisualStudio.Modeling.Diagrams
組件: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (在 Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll 中)
語法
'宣告
Public Shared Function GetPresentation ( _
element As ModelElement _
) As LinkedElementCollection(Of PresentationElement)
public static LinkedElementCollection<PresentationElement> GetPresentation(
ModelElement element
)
參數
- element
類型:Microsoft.VisualStudio.Modeling.ModelElement
傳回值
類型:Microsoft.VisualStudio.Modeling.LinkedElementCollection<PresentationElement>
備註
使用這個方法會從一個網域模型項目或關聯性巡覽至表示在使用者介面的圖案或連結。 除非您做了主要自訂對 DSL,將具有每個網域項目的簡報項目。 在某些情況下,當顯示初始化時,可能不會顯示項目。 如果尚未設定網域類別的網域項目會在您的 DSL 定義,將不會顯示項目。
對於網域項目特定類別,網域項目對應指定簡報項目的類別–圖案或連結。
範例
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) {...}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。