Skip to main content

TabDialogButton.RemoveClass

Declaration#

public void RemoveClass(string className)

Parameters#

NameDescription
classNameName of class to remove

Description#

Remove a style class from use

Usage#

Example
using NullSave.GDTK.UIPro;using UnityEngine;
public class Example : MonoBehaviour{    public void ExampleMethod(TabDialogButton target)    {        target.AddClass("accent");    }}