Sdílet prostřednictvím


Entity.FindComponentOfType Metoda

Definice

Přetížení

FindComponentOfType(ObjectType)

Pokusí se najít součást daného typu, který je připojen k této entitě.

FindComponentOfType<T>()

Najděte součást typu pro tuto entitu.

FindComponentOfType(ObjectType)

Pokusí se najít součást daného typu, který je připojen k této entitě.

public:
 Microsoft::Azure::RemoteRendering::ComponentBase ^ FindComponentOfType(Microsoft::Azure::RemoteRendering::ObjectType type);
public Microsoft.Azure.RemoteRendering.ComponentBase FindComponentOfType (Microsoft.Azure.RemoteRendering.ObjectType type);
member this.FindComponentOfType : Microsoft.Azure.RemoteRendering.ObjectType -> Microsoft.Azure.RemoteRendering.ComponentBase
Public Function FindComponentOfType (type As ObjectType) As ComponentBase

Parametry

type
ObjectType

Typ komponenty, který chcete vyhledat, například MeshComponent.

Návraty

Komponenta, pokud byla nalezena, jinak null

Poznámky

Ke každé entitě lze připojit pouze jednu instanci každého typu komponenty. Tato funkce proto buď vrátí jeden výsledek, nebo null, pokud se nenajde žádná. Pokud potřebujete prohledat součásti v podsložce entity, použijte funkci FindComponentsOfTypeInHierarchy(ObjectType, Int32).

Platí pro

FindComponentOfType<T>()

Najděte součást typu pro tuto entitu.

public:
generic <typename T>
 where T : Microsoft::Azure::RemoteRendering::ComponentBase T FindComponentOfType();
public T FindComponentOfType<T> () where T : Microsoft.Azure.RemoteRendering.ComponentBase;
member this.FindComponentOfType : unit -> 'T (requires 'T :> Microsoft.Azure.RemoteRendering.ComponentBase)
Public Function FindComponentOfType(Of T As ComponentBase) () As T

Parametry typu

T

Návraty

T

Komponenta, pokud byla nalezena, jinak null

Platí pro