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