blockly > Block > removeIcon
Block.removeIcon() method
Removes the icon whose getType matches the given type iconType from the block.
Signature:
removeIcon(type: IconType<IIcon>): boolean;
Parameters
Parameter |
Type |
Description |
type |
IconType<IIcon> |
The type of the icon to remove from the block. |
Returns:
boolean
True if an icon with the given type was found, false otherwise.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[null,null,["Last updated 2024-09-18 UTC."],[[["The `Block.removeIcon()` method removes an icon from a block based on its type."],["It accepts the icon type as an argument and returns `true` if the icon was successfully removed, `false` otherwise."]]],["The `Block.removeIcon()` method removes a specific icon from a block based on its type. It accepts an `IconType` parameter, specifying the icon to remove. The method returns a boolean value: `true` if an icon of the specified type was found and removed, and `false` otherwise. The only parameter is the icon's type. This method is used to delete the specified icon.\n"]]