Entity.FindComponentsOfTypeInHierarchy(ObjectType, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
周遊實體的子圖形(包括此實體),並傳回圖表中找到之特定類型的所有元件清單。
public:
System::Collections::Generic::IReadOnlyList<Microsoft::Azure::RemoteRendering::ComponentBase ^> ^ FindComponentsOfTypeInHierarchy(Microsoft::Azure::RemoteRendering::ObjectType type, int maxResultCount);
public System.Collections.Generic.IReadOnlyList<Microsoft.Azure.RemoteRendering.ComponentBase> FindComponentsOfTypeInHierarchy (Microsoft.Azure.RemoteRendering.ObjectType type, int maxResultCount);
member this.FindComponentsOfTypeInHierarchy : Microsoft.Azure.RemoteRendering.ObjectType * int -> System.Collections.Generic.IReadOnlyList<Microsoft.Azure.RemoteRendering.ComponentBase>
Public Function FindComponentsOfTypeInHierarchy (type As ObjectType, maxResultCount As Integer) As IReadOnlyList(Of ComponentBase)
參數
- type
- ObjectType
要搜尋的元件類型,例如 MeshComponent。
- maxResultCount
- Int32
如果大於 0,這個值會指定傳回專案的最大數目。 若為負值或 0,則不會強加任何大小限制。
傳回
找到之項目的陣列,或空陣列。
備註
如果您只需要第一個結果,則 maxResultCount 應該設定為1,讓搜尋函式可以提前傳回。