FlexList.SetSortByDropdown
Declaration#
public void SetSortByDropdown(TMP_Dropdown source)Parameters#
| Name | Description |
|---|---|
| source | Dropdown used to set sort mode |
Description#
Sets the sort mode from a dropdown
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(FlexList target, TMPro.TMP_Dropdown dropdown) { target.SetSortByDropdown(dropdown); }
}