TabDialogButton.RemoveClass
Declaration#
public void RemoveClass(string className)Parameters#
| Name | Description |
|---|---|
| className | Name 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"); }}