Description:

Call this method to get a box at the specified index.

Syntax:
public bool TryGetBox(
int index,
out Box box
)
deprecated in 8.0
Parameters:
  • index
  • Type: int
  • The zero based index of the item in the list. Valid values are greater than or equal to 0 and less than Count.
  • box
  • Type: Box
  • Will contain the box at the requested index if the index is in range and the primitive at the requested index is a box.
Returns:
Type: bool
Return True if the index is in range and the primitive at the requested index is a box otherwise returns false.
Available since:
5.7

Nothing found