Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ToggleInClassList

Toggles between adding and removing the given class name from the class list.
Read time 1 minuteLast updated 5 days ago

Definition

ToggleInClassList(string)

Toggles between adding and removing the given class name from the class list.
public void ToggleInClassList(string className)

Parameters

className

The class name to add or remove from the class list.

Remarks

Checks for the given class name in the element class list. If the class name is found, it is removed from the class list. If the class name is not found, the class name is added to the class list.
This method has no effect if class name is null or empty.

ToggleInClassList(UniqueStyleString)

Toggles between adding and removing the given class name from the class list.
public void ToggleInClassList(UniqueStyleString className)

Parameters

The class name to add or remove from the class list.

Remarks

Checks for the given class name in the element class list. If the class name is found, it is removed from the class list. If the class name is not found, the class name is added to the class list.
This method has no effect if class name is null or empty.