Skip to main content

StylizedElement.classNames

public List<string> classNames { get; }

Description#

Get list of Style Classes in used

Usage#

Example
using NullSave.GDTK.UIProusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(StylizedElement target)    {        System.Collections.Generic.List<string> result = target.classNames;    }   }