Skip to main content

FlexList.SetRequireImageByCheckbox

Declaration#

public void SetRequireImageByCheckbox(Checkbox source)

Parameters#

NameDescription
sourceCheckbox used to supply value

Description#

Sets if images are required in the filter via a checkbox

Usage#

Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(FlexList target, Checkbox checkbox)    {        target.SetRequireImageByCheckbox(checkbox);    }
}