FlexList.options
public IReadOnlyList<FlexListOption> options { get; }Description#
Get list of options
Usage#
Example
using NullSave.GDTK;using System.Collections.Generic;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(FlexList target) { IReadOnlyList<FlexListOption> result = target.options; }
}