Skip to main content

FlexList.SetSortByDropdown

Declaration#

public void SetSortByDropdown(TMP_Dropdown source)

Parameters#

NameDescription
sourceDropdown 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);    }
}