DataList_DropdownTMP.GetSelectedItem
Declaration#
public virtual string GetSelectedItem()Description#
Get the selected item text
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(DataList_DropdownTMP target) { string result = target.GetSelectedItem(); }
}