GetInactiveOptions(Span<int>)
Retrieves a Span of integers containing the inactive options as indices.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Method
- Namespace: UnityEngine.UIElements
- Assembly: UnityEngine.UIElementsModule
public Span<int> GetInactiveOptions(Span<int> inactiveOptionsIndices)
Parameters
A Span of type integers with the allocated size to hold the number of inactive indices.
Returns
Type | Description |
|---|---|
| Span<int> |
Examples
public void HandleInactiveOptions(){ var value = myToggleButtonGroup.value; var options = value.GetInactiveOptions(stackalloc int[value.length]); foreach (option in options) { // handle option }}