On this pageFlexListItem.selectedpublic bool selected { get; set; }CopyDescription#Get/Set if the item is selectedUsage#Exampleusing NullSave.GDTK;using UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(FlexListItem target) { bool result = target.selected; } }Copy