FlexList.SetRequireImageByCheckbox
Declaration#
public void SetRequireImageByCheckbox(Checkbox source)Parameters#
| Name | Description |
|---|---|
| source | Checkbox 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); }
}