DataList_DropdownTMP.GetSelectedIndex
Declaration#
public virtual Int32 GetSelectedIndex()Description#
Get the selected index value
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(DataList_DropdownTMP target) { int result = target.GetSelectedIndex(); }
}