Skip to main content

StylizedElement.applyingUpdates

public bool applyingUpdates { get; }

Description#

Gets if element is currently applying style updates

Usage#

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