UIListSource.GetSelectedItem
Declaration#
public virtual T GetSelectedItem()Description#
Get the selected item of type T
Usage#
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(UIListSource target) { string result = target.GetSelectedItem<string>(); }
}