Stay organized with collections
Save and categorize content based on your preferences.
blockly > BlocklyOptions > maxInstances
BlocklyOptions.maxInstances property
Signature:
maxInstances?: {
[blockType: string]: number;
};
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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["`maxInstances` in BlocklyOptions is an optional property that lets you limit the number of instances for specific block types within a workspace."],["It's represented as a dictionary where keys are block type names and values are the maximum allowed instances for that type."],["If a block type isn't specified in `maxInstances`, there's no limit to how many instances of that block can be created."]]],["The `maxInstances` property within `BlocklyOptions` allows setting a limit on the number of instances for specific block types. It's structured as an object where each key is a `blockType` (string) and the corresponding value is a number representing the maximum allowed instances of that block type. This controls the quantity of each specific type of block that can be present.\n"]]