blockly > Toolbox > createContentsContainer_
Toolbox.createContentsContainer_() method
Creates the container for all the contents in the toolbox.
Signature:
protected createContentsContainer_(): HTMLDivElement;
Returns:
HTMLDivElement
The HTML container for the toolbox contents.
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 `createContentsContainer_` method is responsible for generating the HTML container that houses all elements within a Blockly toolbox."],["This method is designated as `protected`, indicating its intended usage within the Toolbox class or its subclasses."],["Upon execution, `createContentsContainer_` returns an HTMLDivElement which serves as the primary container for toolbox content."]]],["The `Toolbox.createContentsContainer_()` method generates the HTML container for the toolbox's content. This protected method, when called, constructs and returns an `HTMLDivElement`. This element serves as the parent container that will hold all the elements within the toolbox. The method's sole function is to create this container, which can be later populated with other elements.\n"]]