blockly > inputs > DummyInput > (constructor)
Constructs a new instance of the DummyInput
class
Signature:
constructor(name: string, block: Block);
Parameters
Parameter |
Type |
Description |
name |
string |
Language-neutral identifier which may used to find this input again. |
block |
Block |
The block containing this input. |
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."],[[["Creates a `DummyInput` object, used for spacing and alignment in Blockly blocks."],["Requires a `name` for identification and the `block` it belongs to."],["The `name` is a language-neutral identifier for finding the input later."]]],["The `DummyInput` class constructor creates a new instance. It requires two parameters: `name`, a string representing a language-neutral identifier for later retrieval, and `block`, which is a `Block` object representing the container for this input. These parameters are essential for defining and locating the newly created `DummyInput` within a block structure.\n"]]