Skip to main content

StylizedElement.disabled

public bool disabled { get; set; }

Description#

Get/Set if element is disabled

Usage#

Example
using NullSave.GDTK.UIProusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(StylizedElement target)    {        bool result = target.disabled;    }   }