Entity.FindComponentsOfTypeInHierarchy(ObjectType, Int32) 方法

定义

遍历实体的子图(包括此实体),并返回图形中找到的特定类型的所有组件的列表。

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,以便搜索函数可以提前返回。

适用于