DOMTokenList.Toggle
Contents
[
Hide
]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)
Parameter | Type | Description |
---|---|---|
token | String | The token you want to toggle. |
Return Value
A Boolean indicating whether token is in the list after the call.
See Also
- class DOMTokenList
- package com.aspose.html.Collections
- package Aspose.HTML
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)
Parameter | Type | Description |
---|---|---|
token | String | The token you want to toggle. |
force | Nullable`1 | A 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
- class DOMTokenList
- package com.aspose.html.Collections
- package Aspose.HTML