Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TryGetProperty(ref TContainer, int, out IProperty<TContainer>)

Gets the property associated with the specified index.
Read time 1 minuteLast updated 11 days ago

Definition

  • Type: Method
  • Namespace: Unity.Properties
  • Assembly: UnityEngine.PropertiesModule

TryGetProperty(T, int, IProperty<T>)

bool TryGetProperty(ref TContainer container, int index, out IProperty<TContainer> property)

Parameters

container

T
The container hosting the data.

index

The index of the property to get.

property

When this method returns, contains the property associated with the specified index, if the name is found; otherwise, null.

Returns

Type

Description

bool
true
if the IIndexedProperties<TContainer> contains a property for the specified index; otherwise,
false
.