Entity.FindComponentOfType Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
FindComponentOfType(ObjectType) |
Tente de trouver un composant du type donné attaché à cette entité. |
FindComponentOfType<T>() |
Recherchez un composant d’un type sur cette entité. |
FindComponentOfType(ObjectType)
Tente de trouver un composant du type donné attaché à cette 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
Paramètres
- type
- ObjectType
Type de composant à rechercher, par exemple MeshComponent.
Retours
Composant s’il est trouvé, sinon null
Remarques
Une seule instance de chaque type de composant peut être attachée à chaque entité. Par conséquent, cette fonction retourne un résultat unique, ou null
, si aucune valeur n’est trouvée. Si vous devez rechercher la sous-arborescence d’entités complète pour les composants, utilisez la fonction FindComponentsOfTypeInHierarchy(ObjectType, Int32).
S’applique à
FindComponentOfType<T>()
Recherchez un composant d’un type sur cette entité.
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
Paramètres de type
- T
Retours
Composant s’il est trouvé, sinon null