DOMTokenList.Toggle

Toggle(string)

Removes the token from the list if it exists, or adds the token to the list if it doesn’t.

public bool Toggle(string token)
ParameterTypeDescription
tokenStringThe token you want to toggle.

Return Value

A Boolean indicating whether token is in the list after the call.

See Also


Toggle(string, bool)

Removes the token from the list if it exists, or adds the token to the list if it doesn’t.

public bool Toggle(string token, bool force)
ParameterTypeDescription
tokenStringThe token you want to toggle.
forceBooleanA Boolean that, if included, turns the toggle into a one way-only operation. If set to false, then token will only be removed, but not added. If set to true, then token will only be added, but not removed.

Return Value

A Boolean indicating whether token is in the list after the call.

See Also