次の方法で共有


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 に設定して、検索機能が早期に返すことができるようにする必要があります。

適用対象