`, called the "injection
+div".
+
+The injection `div` can be sized [statically][fixed-demo] or
+[dynamically][resizable-demo]. Blockly elements within the `div` update their
+size when the window resizes.
+
+The following code snippet shows the HTML for a statically sized injection
+`div`:
+
+```html
+
+```
+
+## Injection
+
+Injection creates all of the HTML sub-elements that make up the UI of a
+workspace. It also does all of the initialization needed to get the workspace
+ready for use.
+
+The injection function can take in the ID of the injection `div`, or the
+injection `div` itself:
+
+```js
+// Passes the ID.
+const workspace = Blockly.inject('blocklyDiv', { /* config */ });
+
+// Passes the injection div.
+const workspace = Blockly.inject(
+ document.getElementById('blocklyDiv'), { /* config */ });
+```
+
+## Configuration
+
+The workspace can be configured with numerous options (such as layout and style)
+during injection.
+
+For more information about configuration options, see
+[Configuration options][config-options].
+
+[visual-glossary]: /blockly/guides/get-started/workspace-anatomy
+[config-options]: /blockly/guides/configure/web/configuration_struct#the-options-dictionary
+[fixed-demo]: https://raspberrypifoundation.github.io/blockly-samples/examples/fixed-demo/index.html
+[resizable-demo]: https://raspberrypifoundation.github.io/blockly-samples/examples/resizable-demo/index.html
diff --git a/docs/docs/guides/programming/forking_blockly.mdx b/docs/docs/guides/programming/forking_blockly.mdx
new file mode 100644
index 000000000..3ab14d8cf
--- /dev/null
+++ b/docs/docs/guides/programming/forking_blockly.mdx
@@ -0,0 +1,59 @@
+---
+title: Fork Blockly
+description: Why not to fork Blockly, and alternatives to it..
+image: images/blockly_banner.png
+---
+
+# Fork Blockly
+
+Forking is a common way to modify an open source project to make it your own.
+There are many successful forks of Blockly, including pxt-blockly,
+scratch-blocks, and App Inventor.
+
+However, forking Blockly can make it difficult for you to pull in updates and
+bugfixes in core Blockly. We strongly recommend that you customize Blockly using
+plugins and custom classes instead of by forking.
+
+For more information, see
+[Plugins](/blockly/guides/programming/plugin_overview) and [Advanced
+customization](/blockly/guides/configure/web/customization).
+
+## Alternatives
+
+### Ask on the forum
+
+Someone else may have implemented the behaviour you want. Search the forum for
+previous discussions, or post and ask if anyone else has already written that
+code.
+
+### Use an existing plugin
+
+If your change is a commonly requested feature, we may already have published it
+as a plugin on blockly-samples.
+
+### Write a plugin
+
+Write code that uses Blockly's publicly available APIs to make the change you
+need. For instance, changes to block rendering, toolbox appearance, and
+connection checking behaviour can all be implemented as plugins.
+
+### File a feature request
+
+If you need an API that isn't public, you can [file a
+bug](https://github.com/RaspberryPiFoundation/blockly/issues) against core Blockly
+to make that API public.
+
+### Make a pull request
+
+Blockly welcomes contributions! If your change is general-purpose, your best bet
+may be to make a pull request. Blockly improves, you don't have to maintain a
+fork, and everyone wins.
+
+Check out the [contributing](/blockly/guides/contribute/index) page to learn
+more.
+
+## Updating a fork
+
+We recommend that you merge in the latest version of Blockly on a regular basis.
+We publish Blockly quarterly, and each release includes release notes and a
+discussion of any breaking changes.
diff --git a/docs/docs/guides/programming/plugin_overview.mdx b/docs/docs/guides/programming/plugin_overview.mdx
new file mode 100644
index 000000000..bc60fbd9b
--- /dev/null
+++ b/docs/docs/guides/programming/plugin_overview.mdx
@@ -0,0 +1,177 @@
+---
+description: Plugins, their types, and how to use them.
+title: Plugins
+image: images/blockly_banner.png
+---
+
+import Image from '@site/src/components/Image';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+# Plugins
+
+A plugin is a self-contained piece of code that adds functionality to Blockly.
+For example, it might add a custom field, define a new theme, or provide a
+custom renderer. Plugins are generally packaged and distributed through npm.
+
+:::note
+The [`BlocklyOptions`
+object](/blockly/guides/configure/web/configuration_struct#the-options-dictionary)
+has a `plugins` property for injecting classes that [customize Blockly
+behavior](/blockly/guides/configure/web/customization). While these classes may
+be implemented as plugins, this is not required and they are otherwise
+unrelated.
+:::
+
+For a quick introduction to plugins, see our [Plugins Overview talk
+(2021)](https://www.youtube.com/watch?v=rg-V0w7UZFc&list=PLSIUOFhnxEiCjoIwJ0jAdwpTZET73CK7d&index=3).
+
+If you want to create your own plugin, see [Add a
+plugin](/blockly/guides/contribute/samples/add_a_plugin).
+
+## First- and third-party plugins
+
+_First-party plugins_ are supported by the Blockly team and published under the
+`@blockly` scope on npm. They are designed to be usable in a wide range of
+Blockly applications.
+
+_Third-party plugins_ are maintained and published independently. They may be
+more complex, more experimental, or targeted to a narrower range of Blockly
+applications.
+
+## Find a plugin
+
+* Visit [Blockly Plugins &
+ Demos](https://raspberrypifoundation.github.io/blockly-samples/#plugins), which has live
+ demos of first-party plugins.
+
+* Search npm for
+ [`keyword:blockly-plugin`](https://www.npmjs.com/search?q=keyword%3Ablockly-plugin).
+ Plugins with the scope `@blockly` are published by the Blockly team. For
+ broader results, search for
+ [`keyword:blockly`](https://www.npmjs.com/search?q=keyword%3Ablockly) or
+ [`blockly`](https://www.npmjs.com/search?q=blockly).
+
+* See the [`blockly-samples/plugins`
+ directory](https://github.com/RaspberryPiFoundation/blockly-samples/tree/main/plugins) on
+ GitHub, which is the repository for first-party plugins. Each plugin has a
+ README that describes its behaviour and intended use.
+
+## Install a plugin
+
+We recommend installing plugins with a package manager like npm or yarn. This
+makes it easy to receive updates.
+
+* **Install a plugin with a package manager**
+
+
+ ```shell
+ npm install @blockly/field-angle
+ ```
+
+
+ ```shell
+ yarn add @blockly/field-angle
+ ```
+
+
+* **Install a plugin without a package manager**
+
+
+ ```html
+
+ ```
+
+ You can also clone the GitHub repository that contains the plugin. For
+ first-party plugins, this is
+ [`blockly-samples`](https://github.com/RaspberryPiFoundation/blockly-samples/tree/main).
+
+
+
+Check the plugin's README to see if there are any additional installation
+instructions.
+
+## Use a plugin
+
+Each plugin is different, so see the plugin's README for information on how to
+use that plugin. The following example shows how to use the
+[`@blockly/field-angle`
+plugin](https://www.npmjs.com/package/@blockly/field-angle):
+
+1. Import code from the plugin. How you do this depends on how you installed
+ the plugin.
+
+
+ ```js
+ import Blockly from 'blockly';
+ import {registerFieldAngle} from '@blockly/field-angle';
+ ```
+
+
+ You do not need to use an `import` statement.
+
+
+ ```js
+ import {registerFieldAngle} from 'path/to/plugin';
+ ```
+
+
+1. Initialize the plugin as needed. Plugins that provide custom fields often
+ require you to register the field:
+
+ ```js
+ registerFieldAngle();
+ ```
+
+1. Use the plugin.
+
+ ```js
+ Blockly.common.defineBlocksWithJsonArray([
+ {
+ type: "my_angle_block",
+ message0: "%1 degrees",
+ args0: [
+ {
+ // Use @blockly/field-angle.
+ type: "field_angle",
+ name: "FIELDNAME",
+ value: 45,
+ },
+ ],
+ output: null,
+ style: 'math_blocks'
+ },
+ ]);
+ ```
+
+
+
+## Plugin versions
+
+Plugins in `blockly-samples` use [semantic versioning](https://semver.org),
+which requires breaking changes to use a new major version. Any new plugin that
+monkey patches core will have a major version of 0 to [signify initial
+development](https://semver.org/#spec-item-4).
+
+Most plugins include the `blockly` package as a
+[`peerDependency`](https://docs.npmjs.com/cli/v11/configuring-npm/package-json#peerdependencies)
+rather than a `dependency`. This is because we assume that you have already
+installed Blockly. (It doesn't make sense to use a plugin without using
+Blockly.) This lets you manage the Blockly version yourself, but also requires
+you to check the plugin's `package.json` to determine the minimum version of
+Blockly it requires. If a plugin is updated to need a newer version of Blockly,
+this is considered a breaking change and its major version will be increased.
+
+When you add a plugin to your application's `package.json`, the default is to
+include a caret before the version:
+
+```json
+"dependencies": {
+ "@blockly/field-angle": "^5.0.12"
+}
+```
+
+This will let npm install any minor version at or above the listed version, so
+version `5.0.20` or `5.1.0` works, but a new major version such as `6.0.1` does
+not. When you update to a new version of Blockly, it's a good idea to check if
+any of your plugins can be updated to a new major version as well.
diff --git a/docs/docs/guides/programming/unforking_blockly.mdx b/docs/docs/guides/programming/unforking_blockly.mdx
new file mode 100644
index 000000000..624999013
--- /dev/null
+++ b/docs/docs/guides/programming/unforking_blockly.mdx
@@ -0,0 +1,92 @@
+---
+description: How to unfork Blockly
+title: Unfork Blockly
+image: images/blockly_banner.png
+---
+
+# Unfork Blockly
+
+This document is aimed at developers that have previously forked Blockly and are
+looking to update to a recent release of Blockly, without patching the library.
+Although this seems like a daunting task, there are a few steps that you can
+take to make the process more manageable.
+
+## Understand Unforking
+
+Using mainline Blockly means you are using a recently released version of
+Blockly, and all of your customizations use public Blockly APIs without
+monkeypatching. Unforking is the work you need to do to implement your fork's
+custom functionality with mainline APIs.
+
+## Simple Unforking Cases
+
+Below are two common reasons you might have forked, and solutions for how to
+return to mainline:
+
+* **You created your own blocks and generators without changing any Blockly
+ code**: To unfork in this situation, you can simply move your custom blocks
+ and generators out of the Blockly repository and into your own application's
+ code. You should then be able to then update your Blockly version.
+* **You added custom functionality on the Blockly namespace without changing
+ any Blockly code**: For example, you added custom fields or helper methods
+ only used by your own application. To unfork in this situation, move this
+ custom code to your own application outside of the Blockly repository. You
+ should then be able to then update your Blockly version.
+
+## Extensive Unforking Case
+
+### Determine forked functionality
+
+The final reason we see users fork is to patch Blockly to create custom
+functionality that they perceive isn't included upstream at the time. If your
+fork is significantly out of date, we may have already added the functionality
+you need, either as [plugins](/blockly/guides/programming/plugin_overview) or in
+core. Knowing what features you added in your fork can provide a roadmap for
+what features you will need to update.
+
+### Understand the architecture
+
+Once you understand the features that use fork-specific APIs, consider:
+
+* For each feature using the fork, is there a way to replicate it using
+ Blockly APIs?
+* If it seems as though you can't replicate the feature using Blockly APIs,
+ please reach out to us through the forum or file an issue on
+ [GitHub](https://github.com/RaspberryPiFoundation/blockly/issues). Our team will
+ then investigate adding APIs to enable your customization.
+
+### Determine your unforking path
+
+The next step is to actually begin the process of implementing the new Blockly
+based architecture for features using the fork. There are two main approaches
+you can take:
+
+* **Upgrade Blockly and see what breaks**: You will immediately see the areas
+ in your code that need to be updated. You can use this combined with what
+ you already know is custom behavior to guide your development.
+* **Refactor your code to separate your features from Blockly**: This requires
+ you to gain a deep understanding of which features are custom to your fork
+ and which came from Blockly. Once your code is fully separated, replace your
+ old version of Blockly with the most recent version, then fix any remaining
+ integration issues.
+
+## Moving Forward
+
+Here are a few rules that you should follow as a Blockly developer in the
+future:
+
+* In general, you shouldn't add new classes to the Blockly namespace. You can
+ register [custom
+ fields](/guides/create-custom-blocks/fields/customizing-fields/creating)
+ or other registrable classes without declaring them inside of the Blockly
+ repository or on the Blockly namespace.
+* You shouldn't rely on Blockly's build tools in order to compile your own
+ application. We don't consider our build tools to be part of the public API,
+ so we may make changes to them which break your application. You are
+ responsible for compiling your application should you wish to do so.
+
+## Reach Out
+
+The Blockly team is available through the [Blockly
+Forum](https://groups.google.com/g/blockly)! If you run into any issues during
+the unforking process feel free to post them there and we can help.
diff --git a/docs/docs/guides/programming/using_blockly_apis.mdx b/docs/docs/guides/programming/using_blockly_apis.mdx
new file mode 100644
index 000000000..e3fa059ef
--- /dev/null
+++ b/docs/docs/guides/programming/using_blockly_apis.mdx
@@ -0,0 +1,171 @@
+---
+description: Understanding the visibility of Blockly's APIs.
+title: API visibility
+image: images/blockly_banner.png
+---
+
+# API visibility
+
+This page describes best practices for calling functions and accessing
+properties in core Blockly. These principles apply to creating
+[plugins](/blockly/guides/programming/plugin_overview) for Blockly and to
+integrating Blockly into a standalone application.
+
+## Visibility {#visibility}
+
+We use [TypeScript access
+modifiers](https://www.typescriptlang.org/docs/handbook/2/classes.html#member-visibility)
+to mark visibility in the core library as `public`, `private`, or `protected`.
+Some properties may be annotated with `@internal` in their
+[TsDoc](https://api-extractor.com/pages/tsdoc/tag_internal/) comments.
+
+All `public` and `protected` properties are documented in the
+[References](/blockly/reference/js/blockly) section of the Blockly website. You
+can also check visibility by reading the code.
+
+:::warning
+While JavaScript does not enforce these visibility annotations, you
+should avoid accessing anything that is not `public`. The Blockly team does not
+guarantee stability of non-public properties and functions between releases.
+:::
+
+### public {#annotations-public}
+
+Anything marked `public` is part of our public API. Any property in a module
+that does not have a visibility modifier is considered public.
+
+We try to not change our public API frequently or without good reason and
+warning. The exception: we may make a new API public in one release and modify
+it in the next release in response to early feedback. After that you may
+consider a public function or property stable.
+
+Public functions may be called from anywhere, and overridden in subclasses as
+long as the signature does not change.
+
+### protected {#annotations-protected}
+
+Protected functions and properties may only be accessed by the defining class or
+a subclass.
+
+Subclasses are allowed to override protected functions and properties, without
+changing type signatures.
+
+For instance, a custom renderer that extends the base renderer class may access
+its protected properties.
+
+In each case you should make sure you understand how the function or property is
+used in the rest of the code.
+
+### private {#annotations-private}
+
+These can only be accessed by code in the same file as the definition. Directly
+accessing these properties may result in undefined behaviour.
+
+Subclasses are not allowed to override private functions and properties.
+
+Private properties are subject to change without warning, as they are not
+considered part of Blockly's public API.
+
+Some functions in Blockly do not have visibility annotations because they are
+not exported from their module. These functions are essentially local variables
+and cannot be used outside of their defining module. They should be considered
+equivalent to private properties.
+
+:::note
+Previously, Blockly used an underscore to denote private properties:
+`example_`. In keeping with the current Google style guide, we no longer do this
+in new code, and may change old code. Before calling a method in Blockly, ensure
+that it appears in the reference documentation or is not marked private in the
+code. In rare cases private functions were used so widely that they became
+public, so you may see public functions that end in an underscore.
+:::
+
+### internal {#annotations-internal}
+
+Internal functions and properties are intended to be used within the core
+library, but not externally. They are designated with the TsDoc `@internal`
+annotation.
+
+Internal properties are subject to change without warning, as they are not
+considered part of Blockly's public API.
+
+Internal properties may be accessed from anywhere within core, and overridden in
+subclasses in core as long as the signature does not change. They must not be
+accessed from outside of the core library.
+
+### deprecated {#annotations-deprecated}
+
+Anything marked `@deprecated` should not be used. Most deprecations include
+directions on the preferred code, either in a console warning or TSDoc.
+
+Where possible, deprecated functions will log a warning that includes the
+intended deletion date and a recommendation for a replacement function to call.
+
+## FAQs
+
+The following are some common questions the Blockly team has encountered.
+
+### What if the function I want to use isn't public?
+
+File a [feature
+request](https://github.com/RaspberryPiFoundation/blockly/issues/new?assignees=&labels=issue%3A+feature+request%2C+issue%3A+triage&template=feature_request.yaml)
+on core Blockly. Include a description of your use case and a statement of what
+you would like us to make public.
+
+We will use the feature to request to discuss whether to make it public, or
+whether there are other ways for you to get the same information.
+
+If we decide to make it public, either you or the Blockly team will make the
+appropriate change, and it will go live in the next Blockly release.
+
+If you choose to use a non-public member in a plugin, consider marking your
+plugin as a beta and include the information in your `README`.
+
+### What about monkeypatching?
+
+_Read up on
+[monkeypatching](https://en.wikipedia.org/wiki/Monkey_patch#Applications)._
+
+Monkeypatching is unsafe, because patches could stop working without notice due
+to using non-public pieces of the Blockly API. Patching in a plugin is
+especially dangerous, because your code may interact poorly with any other
+plugin that monkeypatches the same code. For this reason we **strongly**
+recommend against monkeypatching in applications and third party plugins, and
+will not accept it in first party plugins.
+
+### Can I override public functions?
+
+When subclassing: yes. Otherwise: no, that's monkeypatching.
+
+### Can I override protected functions?
+
+When subclassing: yes. Otherwise: no, that's monkeypatching.
+
+### Can I override internal or private functions?
+
+No, that's monkeypatching.
+
+### When can I access properties directly? When should I use a getter or a setter?
+
+If we publish a getter or a setter, please use that instead of directly
+accessing the property. If the property is not public, definitely use getters
+and setters.
+
+:::note
+Consistent usage of getters and setters in plugins gives us flexibility to
+make changes in core Blockly without breaking published code.
+:::
+
+### What if a property doesn't have an annotation?
+
+By default it's public, but please drop us a line in case we want to put a
+getter/setter pair in place for you.
+
+### What if a function doesn't have an annotation?
+
+It's public by default.
+
+### What if I'm still not sure?
+
+Ask a question on the [forum](https://groups.google.com/g/blockly) and we'll get
+back to you within a few days.
diff --git a/docs/docs/publications/publications/publications.mdx b/docs/docs/publications/publications/publications.mdx
new file mode 100644
index 000000000..516b3448a
--- /dev/null
+++ b/docs/docs/publications/publications/publications.mdx
@@ -0,0 +1,26 @@
+---
+title: Publications
+description: Publications related to Blockly
+---
+
+# Publications by the Blockly team
+
+## Tips for Creating a Block Language with Blockly
+
+E. Pasternak, R. Fenichel and A. N. Marshall, "Tips for creating a block language with blockly," 2017 IEEE Blocks and Beyond Workshop (B&B), Raleigh, NC, USA, 2017, pp. 21-24.
+
+**Abstract**: Blockly is an open source library that makes it easy to add block based visual programming to an app. It is designed to be flexible and supports a large set of features for different applications. It has been used for programming animated characters on a screen; creating story scripts; controlling robots; and even generating legal documents. But Blockly is not itself a language; developers who use Blockly create their own block languages. When developers create an app using Blockly, they should carefully consider the style, which blocks to use, and what APIs and language features are right for their audience.
+
+**Publication link**: [http://ieeexplore.ieee.org/document/8120404/](http://ieeexplore.ieee.org/document/8120404/)
+
+[**Full PDF**](/publications/papers/TipsForCreatingABlockLanguage.pdf)
+
+## Ten things we've learned from Blockly
+
+N. Fraser, "Ten things we've learned from Blockly," 2015 IEEE Blocks and Beyond Workshop (Blocks and Beyond), Atlanta, GA, 2015, pp. 49-50.
+
+**Abstract**: Over the last four years the Blockly team has learned many lessons which are applicable to block-based programming in general. The following are a collection of ten mistakes we have made, or mistakes commonly made by others. Each issue is presented as noncontroversial folk knowledge without supporting data.
+
+**Publication link**: http://ieeexplore.ieee.org/document/7369000/
+
+[**Full PDF**](/publications/papers/TenThingsWeveLearnedFromBlockly.pdf)
\ No newline at end of file
diff --git a/docs/docs/reference/_reference.js b/docs/docs/reference/_reference.js
new file mode 100644
index 000000000..c05ba1fce
--- /dev/null
+++ b/docs/docs/reference/_reference.js
@@ -0,0 +1,21004 @@
+export const referenceSidebar = [
+ {
+ "type": "doc",
+ "label": "Overview",
+ "id": "reference/js/blockly"
+ },
+ {
+ "type": "category",
+ "label": "Classes",
+ "collapsible": true,
+ "className": "hide-level-3",
+ "items": [
+ {
+ "type": "category",
+ "label": "Block",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.block_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.block_class._constructor__1_constructor",
+ "id": "reference/js/blockly.block_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.addicon_1_method",
+ "id": "reference/js/blockly.block_class.addicon_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.allinputsfilled_1_method",
+ "id": "reference/js/blockly.block_class.allinputsfilled_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.appenddummyinput_1_method",
+ "id": "reference/js/blockly.block_class.appenddummyinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.appendendrowinput_1_method",
+ "id": "reference/js/blockly.block_class.appendendrowinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.appendinput_1_method",
+ "id": "reference/js/blockly.block_class.appendinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.appendstatementinput_1_method",
+ "id": "reference/js/blockly.block_class.appendstatementinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.appendvalueinput_1_method",
+ "id": "reference/js/blockly.block_class.appendvalueinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.bumpneighbours_1_method",
+ "id": "reference/js/blockly.block_class.bumpneighbours_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.childblocks__property",
+ "id": "reference/js/blockly.block_class.childblocks__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.collapsed__property",
+ "id": "reference/js/blockly.block_class.collapsed__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.collapsed_field_name_property",
+ "id": "reference/js/blockly.block_class.collapsed_field_name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.collapsed_input_name_property",
+ "id": "reference/js/blockly.block_class.collapsed_input_name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.colour__property",
+ "id": "reference/js/blockly.block_class.colour__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.compose_property",
+ "id": "reference/js/blockly.block_class.compose_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.contextmenu_property",
+ "id": "reference/js/blockly.block_class.contextmenu_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.data_property",
+ "id": "reference/js/blockly.block_class.data_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.decompose_property",
+ "id": "reference/js/blockly.block_class.decompose_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.destroy_property",
+ "id": "reference/js/blockly.block_class.destroy_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.dispose_1_method",
+ "id": "reference/js/blockly.block_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.disposeinternal_1_method",
+ "id": "reference/js/blockly.block_class.disposeinternal_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.disposing_property",
+ "id": "reference/js/blockly.block_class.disposing_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.doinit__1_method",
+ "id": "reference/js/blockly.block_class.doinit__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.domtomutation_property",
+ "id": "reference/js/blockly.block_class.domtomutation_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getchildren_1_method",
+ "id": "reference/js/blockly.block_class.getchildren_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getcolour_1_method",
+ "id": "reference/js/blockly.block_class.getcolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getcommenttext_1_method",
+ "id": "reference/js/blockly.block_class.getcommenttext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getdescendants_1_method",
+ "id": "reference/js/blockly.block_class.getdescendants_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getdevelopervariables_property",
+ "id": "reference/js/blockly.block_class.getdevelopervariables_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getdisabledreasons_1_method",
+ "id": "reference/js/blockly.block_class.getdisabledreasons_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getfield_1_method",
+ "id": "reference/js/blockly.block_class.getfield_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getfields_1_method",
+ "id": "reference/js/blockly.block_class.getfields_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getfieldvalue_1_method",
+ "id": "reference/js/blockly.block_class.getfieldvalue_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.gethue_1_method",
+ "id": "reference/js/blockly.block_class.gethue_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.geticon_1_method",
+ "id": "reference/js/blockly.block_class.geticon_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.geticons_1_method",
+ "id": "reference/js/blockly.block_class.geticons_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getinheriteddisabled_1_method",
+ "id": "reference/js/blockly.block_class.getinheriteddisabled_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getinput_1_method",
+ "id": "reference/js/blockly.block_class.getinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getinputsinline_1_method",
+ "id": "reference/js/blockly.block_class.getinputsinline_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getinputtargetblock_1_method",
+ "id": "reference/js/blockly.block_class.getinputtargetblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getinputwithblock_1_method",
+ "id": "reference/js/blockly.block_class.getinputwithblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getnextblock_1_method",
+ "id": "reference/js/blockly.block_class.getnextblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getoutputshape_1_method",
+ "id": "reference/js/blockly.block_class.getoutputshape_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getparent_1_method",
+ "id": "reference/js/blockly.block_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getpreviousblock_1_method",
+ "id": "reference/js/blockly.block_class.getpreviousblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getrelativetosurfacexy_1_method",
+ "id": "reference/js/blockly.block_class.getrelativetosurfacexy_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getrootblock_1_method",
+ "id": "reference/js/blockly.block_class.getrootblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getstylename_1_method",
+ "id": "reference/js/blockly.block_class.getstylename_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getsurroundparent_1_method",
+ "id": "reference/js/blockly.block_class.getsurroundparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.gettooltip_1_method",
+ "id": "reference/js/blockly.block_class.gettooltip_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.getvars_1_method",
+ "id": "reference/js/blockly.block_class.getvars_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.hasdisabledreason_1_method",
+ "id": "reference/js/blockly.block_class.hasdisabledreason_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.hasicon_1_method",
+ "id": "reference/js/blockly.block_class.hasicon_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.hat_property",
+ "id": "reference/js/blockly.block_class.hat_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.helpurl_property",
+ "id": "reference/js/blockly.block_class.helpurl_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.icons_property",
+ "id": "reference/js/blockly.block_class.icons_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.id_property",
+ "id": "reference/js/blockly.block_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.init_property",
+ "id": "reference/js/blockly.block_class.init_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.initmodel_1_method",
+ "id": "reference/js/blockly.block_class.initmodel_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.inputlist_property",
+ "id": "reference/js/blockly.block_class.inputlist_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.inputsinline_property",
+ "id": "reference/js/blockly.block_class.inputsinline_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.inputsinlinedefault_property",
+ "id": "reference/js/blockly.block_class.inputsinlinedefault_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.iscollapsed_1_method",
+ "id": "reference/js/blockly.block_class.iscollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isdeletable_1_method",
+ "id": "reference/js/blockly.block_class.isdeletable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isdisposed_1_method",
+ "id": "reference/js/blockly.block_class.isdisposed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isduplicatable_1_method",
+ "id": "reference/js/blockly.block_class.isduplicatable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isenabled_1_method",
+ "id": "reference/js/blockly.block_class.isenabled_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isinflyout_property",
+ "id": "reference/js/blockly.block_class.isinflyout_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isinmutator_property",
+ "id": "reference/js/blockly.block_class.isinmutator_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isinsertionmarker__property",
+ "id": "reference/js/blockly.block_class.isinsertionmarker__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isinsertionmarker_1_method",
+ "id": "reference/js/blockly.block_class.isinsertionmarker_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isowndeletable_1_method",
+ "id": "reference/js/blockly.block_class.isowndeletable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isowneditable_1_method",
+ "id": "reference/js/blockly.block_class.isowneditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.isshadow_1_method",
+ "id": "reference/js/blockly.block_class.isshadow_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.jsoninit_1_method",
+ "id": "reference/js/blockly.block_class.jsoninit_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.loadextrastate_property",
+ "id": "reference/js/blockly.block_class.loadextrastate_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.mixin_1_method",
+ "id": "reference/js/blockly.block_class.mixin_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.moveby_1_method",
+ "id": "reference/js/blockly.block_class.moveby_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.moveinputbefore_1_method",
+ "id": "reference/js/blockly.block_class.moveinputbefore_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.movenumberedinputbefore_1_method",
+ "id": "reference/js/blockly.block_class.movenumberedinputbefore_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.mutationtodom_property",
+ "id": "reference/js/blockly.block_class.mutationtodom_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.nextconnection_property",
+ "id": "reference/js/blockly.block_class.nextconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.onchange_property",
+ "id": "reference/js/blockly.block_class.onchange_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.outputconnection_property",
+ "id": "reference/js/blockly.block_class.outputconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.outputshape__property",
+ "id": "reference/js/blockly.block_class.outputshape__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.parentblock__property",
+ "id": "reference/js/blockly.block_class.parentblock__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.previousconnection_property",
+ "id": "reference/js/blockly.block_class.previousconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.removeicon_1_method",
+ "id": "reference/js/blockly.block_class.removeicon_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.removeinput_1_method",
+ "id": "reference/js/blockly.block_class.removeinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.renamevarbyid_1_method",
+ "id": "reference/js/blockly.block_class.renamevarbyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.rendered_property",
+ "id": "reference/js/blockly.block_class.rendered_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.rtl_property",
+ "id": "reference/js/blockly.block_class.rtl_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.saveextrastate_property",
+ "id": "reference/js/blockly.block_class.saveextrastate_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setcollapsed_1_method",
+ "id": "reference/js/blockly.block_class.setcollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setcolour_1_method",
+ "id": "reference/js/blockly.block_class.setcolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setcommenttext_1_method",
+ "id": "reference/js/blockly.block_class.setcommenttext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setdeletable_1_method",
+ "id": "reference/js/blockly.block_class.setdeletable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setdisabledreason_1_method",
+ "id": "reference/js/blockly.block_class.setdisabledreason_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.seteditable_1_method",
+ "id": "reference/js/blockly.block_class.seteditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setfieldvalue_1_method",
+ "id": "reference/js/blockly.block_class.setfieldvalue_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.sethelpurl_1_method",
+ "id": "reference/js/blockly.block_class.sethelpurl_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setinputsinline_1_method",
+ "id": "reference/js/blockly.block_class.setinputsinline_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setmovable_1_method",
+ "id": "reference/js/blockly.block_class.setmovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setmutator_1_method",
+ "id": "reference/js/blockly.block_class.setmutator_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setnextstatement_1_method",
+ "id": "reference/js/blockly.block_class.setnextstatement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setonchange_1_method",
+ "id": "reference/js/blockly.block_class.setonchange_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setoutput_1_method",
+ "id": "reference/js/blockly.block_class.setoutput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setoutputshape_1_method",
+ "id": "reference/js/blockly.block_class.setoutputshape_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setpreviousstatement_1_method",
+ "id": "reference/js/blockly.block_class.setpreviousstatement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setstyle_1_method",
+ "id": "reference/js/blockly.block_class.setstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.settooltip_1_method",
+ "id": "reference/js/blockly.block_class.settooltip_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.setwarningtext_1_method",
+ "id": "reference/js/blockly.block_class.setwarningtext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.stylename__property",
+ "id": "reference/js/blockly.block_class.stylename__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.suppressprefixsuffix_property",
+ "id": "reference/js/blockly.block_class.suppressprefixsuffix_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.todevstring_1_method",
+ "id": "reference/js/blockly.block_class.todevstring_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.tooltip_property",
+ "id": "reference/js/blockly.block_class.tooltip_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.tostring_1_method",
+ "id": "reference/js/blockly.block_class.tostring_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.type_property",
+ "id": "reference/js/blockly.block_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.unplug_1_method",
+ "id": "reference/js/blockly.block_class.unplug_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_class.workspace_property",
+ "id": "reference/js/blockly.block_class.workspace_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "BlockFlyoutInflater",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.blockflyoutinflater_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockflyoutinflater_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.addblocklisteners_1_method",
+ "id": "reference/js/blockly.blockflyoutinflater_class.addblocklisteners_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.createblock_1_method",
+ "id": "reference/js/blockly.blockflyoutinflater_class.createblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.disposeitem_1_method",
+ "id": "reference/js/blockly.blockflyoutinflater_class.disposeitem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.flyout_property",
+ "id": "reference/js/blockly.blockflyoutinflater_class.flyout_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.gapforitem_1_method",
+ "id": "reference/js/blockly.blockflyoutinflater_class.gapforitem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.gettype_1_method",
+ "id": "reference/js/blockly.blockflyoutinflater_class.gettype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.listeners_property",
+ "id": "reference/js/blockly.blockflyoutinflater_class.listeners_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.load_1_method",
+ "id": "reference/js/blockly.blockflyoutinflater_class.load_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.permanentlydisabledblocks_property",
+ "id": "reference/js/blockly.blockflyoutinflater_class.permanentlydisabledblocks_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.removelisteners_1_method",
+ "id": "reference/js/blockly.blockflyoutinflater_class.removelisteners_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockflyoutinflater_class.setflyout_1_method",
+ "id": "reference/js/blockly.blockflyoutinflater_class.setflyout_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "BlockNavigationPolicy",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.blocknavigationpolicy_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.blocknavigationpolicy_class.getfirstchild_1_method",
+ "id": "reference/js/blockly.blocknavigationpolicy_class.getfirstchild_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocknavigationpolicy_class.getnextsibling_1_method",
+ "id": "reference/js/blockly.blocknavigationpolicy_class.getnextsibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocknavigationpolicy_class.getparent_1_method",
+ "id": "reference/js/blockly.blocknavigationpolicy_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocknavigationpolicy_class.getprevioussibling_1_method",
+ "id": "reference/js/blockly.blocknavigationpolicy_class.getprevioussibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocknavigationpolicy_class.isapplicable_1_method",
+ "id": "reference/js/blockly.blocknavigationpolicy_class.isapplicable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocknavigationpolicy_class.isnavigable_1_method",
+ "id": "reference/js/blockly.blocknavigationpolicy_class.isnavigable_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "BlockSvg",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.blocksvg_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blocksvg_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.addclass_1_method",
+ "id": "reference/js/blockly.blocksvg_class.addclass_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.addicon_1_method",
+ "id": "reference/js/blockly.blocksvg_class.addicon_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.addselect_1_method",
+ "id": "reference/js/blockly.blocksvg_class.addselect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.appendinput_1_method",
+ "id": "reference/js/blockly.blocksvg_class.appendinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.bringtofront_1_method",
+ "id": "reference/js/blockly.blocksvg_class.bringtofront_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.bumpneighbours_1_method",
+ "id": "reference/js/blockly.blocksvg_class.bumpneighbours_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.calculatecontextmenulocation_1_method",
+ "id": "reference/js/blockly.blocksvg_class.calculatecontextmenulocation_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.canbefocused_1_method",
+ "id": "reference/js/blockly.blocksvg_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.checkanddelete_1_method",
+ "id": "reference/js/blockly.blocksvg_class.checkanddelete_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.collapsed_warning_id_property",
+ "id": "reference/js/blockly.blocksvg_class.collapsed_warning_id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.customcontextmenu_property",
+ "id": "reference/js/blockly.blocksvg_class.customcontextmenu_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.decompose_property",
+ "id": "reference/js/blockly.blocksvg_class.decompose_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.dispose_1_method",
+ "id": "reference/js/blockly.blocksvg_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.disposeinternal_1_method",
+ "id": "reference/js/blockly.blocksvg_class.disposeinternal_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.drag_1_method",
+ "id": "reference/js/blockly.blocksvg_class.drag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.enddrag_1_method",
+ "id": "reference/js/blockly.blocksvg_class.enddrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.generatecontextmenu_1_method",
+ "id": "reference/js/blockly.blocksvg_class.generatecontextmenu_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getboundingrectangle_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getboundingrectangle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getboundingrectanglewithoutchildren_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getboundingrectanglewithoutchildren_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getchildren_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getchildren_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getcolour_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getcolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getcoloursecondary_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getcoloursecondary_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getcolourtertiary_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getcolourtertiary_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getnextblock_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getnextblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getpreviousblock_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getpreviousblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getrelativetosurfacexy_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getrelativetosurfacexy_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getstyle_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.getsvgroot_1_method",
+ "id": "reference/js/blockly.blocksvg_class.getsvgroot_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.height_property",
+ "id": "reference/js/blockly.blocksvg_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.initsvg_1_method",
+ "id": "reference/js/blockly.blocksvg_class.initsvg_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.inline_property",
+ "id": "reference/js/blockly.blocksvg_class.inline_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.iscopyable_1_method",
+ "id": "reference/js/blockly.blocksvg_class.iscopyable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.ismovable_1_method",
+ "id": "reference/js/blockly.blocksvg_class.ismovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.jsoninit_1_method",
+ "id": "reference/js/blockly.blocksvg_class.jsoninit_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.markdirty_1_method",
+ "id": "reference/js/blockly.blocksvg_class.markdirty_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.moveby_1_method",
+ "id": "reference/js/blockly.blocksvg_class.moveby_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.movenumberedinputbefore_1_method",
+ "id": "reference/js/blockly.blocksvg_class.movenumberedinputbefore_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.moveto_1_method",
+ "id": "reference/js/blockly.blocksvg_class.moveto_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.mutator_property",
+ "id": "reference/js/blockly.blocksvg_class.mutator_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.nextconnection_property",
+ "id": "reference/js/blockly.blocksvg_class.nextconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.blocksvg_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.blocksvg_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.outputconnection_property",
+ "id": "reference/js/blockly.blocksvg_class.outputconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.previousconnection_property",
+ "id": "reference/js/blockly.blocksvg_class.previousconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.removeclass_1_method",
+ "id": "reference/js/blockly.blocksvg_class.removeclass_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.removeicon_1_method",
+ "id": "reference/js/blockly.blocksvg_class.removeicon_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.removeinput_1_method",
+ "id": "reference/js/blockly.blocksvg_class.removeinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.removeselect_1_method",
+ "id": "reference/js/blockly.blocksvg_class.removeselect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.render_1_method",
+ "id": "reference/js/blockly.blocksvg_class.render_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.rendered_property",
+ "id": "reference/js/blockly.blocksvg_class.rendered_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.revertdrag_1_method",
+ "id": "reference/js/blockly.blocksvg_class.revertdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.saveconnections_property",
+ "id": "reference/js/blockly.blocksvg_class.saveconnections_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.schedulesnapandbump_1_method",
+ "id": "reference/js/blockly.blocksvg_class.schedulesnapandbump_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.select_1_method",
+ "id": "reference/js/blockly.blocksvg_class.select_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setcollapsed_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setcollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setcolour_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setcolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setdeletable_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setdeletable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setdisabledreason_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setdisabledreason_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setdragstrategy_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setdragstrategy_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.seteditable_1_method",
+ "id": "reference/js/blockly.blocksvg_class.seteditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.sethighlighted_1_method",
+ "id": "reference/js/blockly.blocksvg_class.sethighlighted_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setinputsinline_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setinputsinline_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setmovable_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setmovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setmutator_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setmutator_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setnextstatement_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setnextstatement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setoutput_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setoutput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setpreviousstatement_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setpreviousstatement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setstyle_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.setwarningtext_1_method",
+ "id": "reference/js/blockly.blocksvg_class.setwarningtext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.snaptogrid_1_method",
+ "id": "reference/js/blockly.blocksvg_class.snaptogrid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.startdrag_1_method",
+ "id": "reference/js/blockly.blocksvg_class.startdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.style_property",
+ "id": "reference/js/blockly.blocksvg_class.style_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.tocopydata_1_method",
+ "id": "reference/js/blockly.blocksvg_class.tocopydata_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.toflyoutinfo_1_method",
+ "id": "reference/js/blockly.blocksvg_class.toflyoutinfo_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.translate_1_method",
+ "id": "reference/js/blockly.blocksvg_class.translate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.unselect_1_method",
+ "id": "reference/js/blockly.blocksvg_class.unselect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.width_property",
+ "id": "reference/js/blockly.blocksvg_class.width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocksvg_class.workspace_property",
+ "id": "reference/js/blockly.blocksvg_class.workspace_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ButtonFlyoutInflater",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.buttonflyoutinflater_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.buttonflyoutinflater_class.disposeitem_1_method",
+ "id": "reference/js/blockly.buttonflyoutinflater_class.disposeitem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.buttonflyoutinflater_class.gapforitem_1_method",
+ "id": "reference/js/blockly.buttonflyoutinflater_class.gapforitem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.buttonflyoutinflater_class.gettype_1_method",
+ "id": "reference/js/blockly.buttonflyoutinflater_class.gettype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.buttonflyoutinflater_class.load_1_method",
+ "id": "reference/js/blockly.buttonflyoutinflater_class.load_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "CodeGenerator",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.codegenerator_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class._constructor__1_constructor",
+ "id": "reference/js/blockly.codegenerator_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.addlooptrap_1_method",
+ "id": "reference/js/blockly.codegenerator_class.addlooptrap_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.addreservedwords_1_method",
+ "id": "reference/js/blockly.codegenerator_class.addreservedwords_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.allnestedcomments_1_method",
+ "id": "reference/js/blockly.codegenerator_class.allnestedcomments_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.blocktocode_1_method",
+ "id": "reference/js/blockly.codegenerator_class.blocktocode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.comment_wrap_property",
+ "id": "reference/js/blockly.codegenerator_class.comment_wrap_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.definitions__property",
+ "id": "reference/js/blockly.codegenerator_class.definitions__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.finish_1_method",
+ "id": "reference/js/blockly.codegenerator_class.finish_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.forblock_property",
+ "id": "reference/js/blockly.codegenerator_class.forblock_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.function_name_placeholder__property",
+ "id": "reference/js/blockly.codegenerator_class.function_name_placeholder__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.function_name_placeholder_regexp__property",
+ "id": "reference/js/blockly.codegenerator_class.function_name_placeholder_regexp__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.functionnames__property",
+ "id": "reference/js/blockly.codegenerator_class.functionnames__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.getprocedurename_1_method",
+ "id": "reference/js/blockly.codegenerator_class.getprocedurename_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.getvariablename_1_method",
+ "id": "reference/js/blockly.codegenerator_class.getvariablename_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.indent_property",
+ "id": "reference/js/blockly.codegenerator_class.indent_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.infinite_loop_trap_property",
+ "id": "reference/js/blockly.codegenerator_class.infinite_loop_trap_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.init_1_method",
+ "id": "reference/js/blockly.codegenerator_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.injectid_1_method",
+ "id": "reference/js/blockly.codegenerator_class.injectid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.isinitialized_property",
+ "id": "reference/js/blockly.codegenerator_class.isinitialized_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.name__property",
+ "id": "reference/js/blockly.codegenerator_class.name__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.namedb__property",
+ "id": "reference/js/blockly.codegenerator_class.namedb__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.order_overrides_property",
+ "id": "reference/js/blockly.codegenerator_class.order_overrides_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.prefixlines_1_method",
+ "id": "reference/js/blockly.codegenerator_class.prefixlines_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.providefunction__1_method",
+ "id": "reference/js/blockly.codegenerator_class.providefunction__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.reserved_words__property",
+ "id": "reference/js/blockly.codegenerator_class.reserved_words__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.scrub__1_method",
+ "id": "reference/js/blockly.codegenerator_class.scrub__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.scrubnakedvalue_1_method",
+ "id": "reference/js/blockly.codegenerator_class.scrubnakedvalue_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.statement_prefix_property",
+ "id": "reference/js/blockly.codegenerator_class.statement_prefix_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.statement_suffix_property",
+ "id": "reference/js/blockly.codegenerator_class.statement_suffix_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.statementtocode_1_method",
+ "id": "reference/js/blockly.codegenerator_class.statementtocode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.valuetocode_1_method",
+ "id": "reference/js/blockly.codegenerator_class.valuetocode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.codegenerator_class.workspacetocode_1_method",
+ "id": "reference/js/blockly.codegenerator_class.workspacetocode_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "CollapsibleToolboxCategory",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class._constructor__1_constructor",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.createdom__1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.createdom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.createicondom__1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.createicondom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.createsubcategoriesdom__1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.createsubcategoriesdom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.expanded__property",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.expanded__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.getchildtoolboxitems_1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.getchildtoolboxitems_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.getdiv_1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.getdiv_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.init_1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.iscollapsible_1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.iscollapsible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.isexpanded_1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.isexpanded_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.makedefaultcssconfig__1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.makedefaultcssconfig__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.onclick_1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.onclick_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.parsecontents__1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.parsecontents__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.registrationname_property",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.registrationname_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.setexpanded_1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.setexpanded_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.setvisible__1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.setvisible__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.subcategoriesdiv__property",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.subcategoriesdiv__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.toggleexpanded_1_method",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.toggleexpanded_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_class.toolboxitems__property",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_class.toolboxitems__property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ComponentManager",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.componentmanager_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_class.addcapability_1_method",
+ "id": "reference/js/blockly.componentmanager_class.addcapability_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_class.addcomponent_1_method",
+ "id": "reference/js/blockly.componentmanager_class.addcomponent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_class.capability_property",
+ "id": "reference/js/blockly.componentmanager_class.capability_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_class.getcomponent_1_method",
+ "id": "reference/js/blockly.componentmanager_class.getcomponent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_class.getcomponents_1_method",
+ "id": "reference/js/blockly.componentmanager_class.getcomponents_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_class.hascapability_1_method",
+ "id": "reference/js/blockly.componentmanager_class.hascapability_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_class.removecapability_1_method",
+ "id": "reference/js/blockly.componentmanager_class.removecapability_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_class.removecomponent_1_method",
+ "id": "reference/js/blockly.componentmanager_class.removecomponent_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Connection",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.connection_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.connection_class._constructor__1_constructor",
+ "id": "reference/js/blockly.connection_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.can_connect_property",
+ "id": "reference/js/blockly.connection_class.can_connect_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.connect__1_method",
+ "id": "reference/js/blockly.connection_class.connect__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.connect_1_method",
+ "id": "reference/js/blockly.connection_class.connect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.disconnect_1_method",
+ "id": "reference/js/blockly.connection_class.disconnect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.disconnectinternal_1_method",
+ "id": "reference/js/blockly.connection_class.disconnectinternal_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.getcheck_1_method",
+ "id": "reference/js/blockly.connection_class.getcheck_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.getconnectionfororphanedconnection_1_method",
+ "id": "reference/js/blockly.connection_class.getconnectionfororphanedconnection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.getparentandchildconnections_1_method",
+ "id": "reference/js/blockly.connection_class.getparentandchildconnections_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.getshadowdom_1_method",
+ "id": "reference/js/blockly.connection_class.getshadowdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.getshadowstate_1_method",
+ "id": "reference/js/blockly.connection_class.getshadowstate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.getsourceblock_1_method",
+ "id": "reference/js/blockly.connection_class.getsourceblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.id_property",
+ "id": "reference/js/blockly.connection_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.isconnected_1_method",
+ "id": "reference/js/blockly.connection_class.isconnected_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.issuperior_1_method",
+ "id": "reference/js/blockly.connection_class.issuperior_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.oncheckchanged__1_method",
+ "id": "reference/js/blockly.connection_class.oncheckchanged__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.reason_checks_failed_property",
+ "id": "reference/js/blockly.connection_class.reason_checks_failed_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.reason_different_workspaces_property",
+ "id": "reference/js/blockly.connection_class.reason_different_workspaces_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.reason_drag_checks_failed_property",
+ "id": "reference/js/blockly.connection_class.reason_drag_checks_failed_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.reason_previous_and_output_property",
+ "id": "reference/js/blockly.connection_class.reason_previous_and_output_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.reason_self_connection_property",
+ "id": "reference/js/blockly.connection_class.reason_self_connection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.reason_shadow_parent_property",
+ "id": "reference/js/blockly.connection_class.reason_shadow_parent_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.reason_target_null_property",
+ "id": "reference/js/blockly.connection_class.reason_target_null_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.reason_wrong_type_property",
+ "id": "reference/js/blockly.connection_class.reason_wrong_type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.reconnect_1_method",
+ "id": "reference/js/blockly.connection_class.reconnect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.respawnshadow__1_method",
+ "id": "reference/js/blockly.connection_class.respawnshadow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.setcheck_1_method",
+ "id": "reference/js/blockly.connection_class.setcheck_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.setshadowdom_1_method",
+ "id": "reference/js/blockly.connection_class.setshadowdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.setshadowstate_1_method",
+ "id": "reference/js/blockly.connection_class.setshadowstate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.sourceblock__property",
+ "id": "reference/js/blockly.connection_class.sourceblock__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.targetblock_1_method",
+ "id": "reference/js/blockly.connection_class.targetblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.targetconnection_property",
+ "id": "reference/js/blockly.connection_class.targetconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.tostring_1_method",
+ "id": "reference/js/blockly.connection_class.tostring_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connection_class.type_property",
+ "id": "reference/js/blockly.connection_class.type_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ConnectionChecker",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.connectionchecker_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.connectionchecker_class.canconnect_1_method",
+ "id": "reference/js/blockly.connectionchecker_class.canconnect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionchecker_class.canconnecttoprevious__1_method",
+ "id": "reference/js/blockly.connectionchecker_class.canconnecttoprevious__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionchecker_class.canconnectwithreason_1_method",
+ "id": "reference/js/blockly.connectionchecker_class.canconnectwithreason_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionchecker_class.dodragchecks_1_method",
+ "id": "reference/js/blockly.connectionchecker_class.dodragchecks_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionchecker_class.dosafetychecks_1_method",
+ "id": "reference/js/blockly.connectionchecker_class.dosafetychecks_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionchecker_class.dotypechecks_1_method",
+ "id": "reference/js/blockly.connectionchecker_class.dotypechecks_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionchecker_class.geterrormessage_1_method",
+ "id": "reference/js/blockly.connectionchecker_class.geterrormessage_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ConnectionDB",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.connectiondb_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.connectiondb_class._constructor__1_constructor",
+ "id": "reference/js/blockly.connectiondb_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectiondb_class.getneighbours_1_method",
+ "id": "reference/js/blockly.connectiondb_class.getneighbours_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectiondb_class.init_1_method",
+ "id": "reference/js/blockly.connectiondb_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectiondb_class.removeconnection_1_method",
+ "id": "reference/js/blockly.connectiondb_class.removeconnection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectiondb_class.searchforclosest_1_method",
+ "id": "reference/js/blockly.connectiondb_class.searchforclosest_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ConnectionNavigationPolicy",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.connectionnavigationpolicy_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.connectionnavigationpolicy_class.getfirstchild_1_method",
+ "id": "reference/js/blockly.connectionnavigationpolicy_class.getfirstchild_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionnavigationpolicy_class.getnextsibling_1_method",
+ "id": "reference/js/blockly.connectionnavigationpolicy_class.getnextsibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionnavigationpolicy_class.getparent_1_method",
+ "id": "reference/js/blockly.connectionnavigationpolicy_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionnavigationpolicy_class.getparentconnection_1_method",
+ "id": "reference/js/blockly.connectionnavigationpolicy_class.getparentconnection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionnavigationpolicy_class.getprevioussibling_1_method",
+ "id": "reference/js/blockly.connectionnavigationpolicy_class.getprevioussibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionnavigationpolicy_class.isapplicable_1_method",
+ "id": "reference/js/blockly.connectionnavigationpolicy_class.isapplicable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.connectionnavigationpolicy_class.isnavigable_1_method",
+ "id": "reference/js/blockly.connectionnavigationpolicy_class.isnavigable_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ContextMenuRegistry",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.contextmenuregistry_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_class._constructor__1_constructor",
+ "id": "reference/js/blockly.contextmenuregistry_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_class.getcontextmenuoptions_1_method",
+ "id": "reference/js/blockly.contextmenuregistry_class.getcontextmenuoptions_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_class.getitem_1_method",
+ "id": "reference/js/blockly.contextmenuregistry_class.getitem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_class.register_1_method",
+ "id": "reference/js/blockly.contextmenuregistry_class.register_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_class.registry_property",
+ "id": "reference/js/blockly.contextmenuregistry_class.registry_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_class.reset_1_method",
+ "id": "reference/js/blockly.contextmenuregistry_class.reset_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_class.unregister_1_method",
+ "id": "reference/js/blockly.contextmenuregistry_class.unregister_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "DeleteArea",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.deletearea_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.deletearea_class._constructor__1_constructor",
+ "id": "reference/js/blockly.deletearea_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.deletearea_class.id_property",
+ "id": "reference/js/blockly.deletearea_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.deletearea_class.updatewoulddelete__1_method",
+ "id": "reference/js/blockly.deletearea_class.updatewoulddelete__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.deletearea_class.woulddelete__property",
+ "id": "reference/js/blockly.deletearea_class.woulddelete__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.deletearea_class.woulddelete_1_method",
+ "id": "reference/js/blockly.deletearea_class.woulddelete_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "DragTarget",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.dragtarget_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.dragtarget_class._constructor__1_constructor",
+ "id": "reference/js/blockly.dragtarget_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragtarget_class.getclientrect_1_method",
+ "id": "reference/js/blockly.dragtarget_class.getclientrect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragtarget_class.id_property",
+ "id": "reference/js/blockly.dragtarget_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragtarget_class.ondragenter_1_method",
+ "id": "reference/js/blockly.dragtarget_class.ondragenter_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragtarget_class.ondragexit_1_method",
+ "id": "reference/js/blockly.dragtarget_class.ondragexit_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragtarget_class.ondragover_1_method",
+ "id": "reference/js/blockly.dragtarget_class.ondragover_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragtarget_class.ondrop_1_method",
+ "id": "reference/js/blockly.dragtarget_class.ondrop_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragtarget_class.shouldpreventmove_1_method",
+ "id": "reference/js/blockly.dragtarget_class.shouldpreventmove_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FieldCheckbox",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldcheckbox_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class._constructor__1_constructor",
+ "id": "reference/js/blockly.fieldcheckbox_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.check_char_property",
+ "id": "reference/js/blockly.fieldcheckbox_class.check_char_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.configure__1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.configure__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.doclassvalidation__1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.doclassvalidation__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.dovalueupdate__1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.dovalueupdate__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.getdisplaytext__1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.getdisplaytext__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.gettext_1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.gettext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.getvalue_1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.getvalue_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.getvalueboolean_1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.getvalueboolean_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.initview_1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.render__1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.render__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.serializable_property",
+ "id": "reference/js/blockly.fieldcheckbox_class.serializable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.setcheckcharacter_1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.setcheckcharacter_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.showeditor__1_method",
+ "id": "reference/js/blockly.fieldcheckbox_class.showeditor__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckbox_class.value__property",
+ "id": "reference/js/blockly.fieldcheckbox_class.value__property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FieldDropdown",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fielddropdown_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class._constructor__1_constructor",
+ "id": "reference/js/blockly.fielddropdown_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class._constructor__2_constructor",
+ "id": "reference/js/blockly.fielddropdown_class._constructor__2_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.applycolour_1_method",
+ "id": "reference/js/blockly.fielddropdown_class.applycolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.arrow_char_property",
+ "id": "reference/js/blockly.fielddropdown_class.arrow_char_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.clicktarget__property",
+ "id": "reference/js/blockly.fielddropdown_class.clicktarget__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.createsvgarrow__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.createsvgarrow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.createtextarrow__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.createtextarrow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.doclassvalidation__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.doclassvalidation__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.doclassvalidation__2_method",
+ "id": "reference/js/blockly.fielddropdown_class.doclassvalidation__2_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.dovalueupdate__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.dovalueupdate__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.dropdowndispose__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.dropdowndispose__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.getoptions_1_method",
+ "id": "reference/js/blockly.fielddropdown_class.getoptions_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.gettext__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.gettext__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.image_y_offset_property",
+ "id": "reference/js/blockly.fielddropdown_class.image_y_offset_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.image_y_padding_property",
+ "id": "reference/js/blockly.fielddropdown_class.image_y_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.initview_1_method",
+ "id": "reference/js/blockly.fielddropdown_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.isoptionlistdynamic_1_method",
+ "id": "reference/js/blockly.fielddropdown_class.isoptionlistdynamic_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.menu__property",
+ "id": "reference/js/blockly.fielddropdown_class.menu__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.menugenerator__property",
+ "id": "reference/js/blockly.fielddropdown_class.menugenerator__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.onitemselected__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.onitemselected__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.render__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.render__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.separator_property",
+ "id": "reference/js/blockly.fielddropdown_class.separator_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.serializable_property",
+ "id": "reference/js/blockly.fielddropdown_class.serializable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.setoptions_1_method",
+ "id": "reference/js/blockly.fielddropdown_class.setoptions_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.shouldaddborderrect__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.shouldaddborderrect__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.showeditor__1_method",
+ "id": "reference/js/blockly.fielddropdown_class.showeditor__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.trimoptions_1_method",
+ "id": "reference/js/blockly.fielddropdown_class.trimoptions_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdown_class.validateoptions_1_method",
+ "id": "reference/js/blockly.fielddropdown_class.validateoptions_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FieldImage",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldimage_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class._constructor__1_constructor",
+ "id": "reference/js/blockly.fieldimage_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.configure__1_method",
+ "id": "reference/js/blockly.fieldimage_class.configure__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.doclassvalidation__1_method",
+ "id": "reference/js/blockly.fieldimage_class.doclassvalidation__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.dovalueupdate__1_method",
+ "id": "reference/js/blockly.fieldimage_class.dovalueupdate__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.editable_property",
+ "id": "reference/js/blockly.fieldimage_class.editable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.getfliprtl_1_method",
+ "id": "reference/js/blockly.fieldimage_class.getfliprtl_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.gettext__1_method",
+ "id": "reference/js/blockly.fieldimage_class.gettext__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.imageelement_property",
+ "id": "reference/js/blockly.fieldimage_class.imageelement_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.imageheight_property",
+ "id": "reference/js/blockly.fieldimage_class.imageheight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.initview_1_method",
+ "id": "reference/js/blockly.fieldimage_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.isclickable_1_method",
+ "id": "reference/js/blockly.fieldimage_class.isclickable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.isdirty__property",
+ "id": "reference/js/blockly.fieldimage_class.isdirty__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.setalt_1_method",
+ "id": "reference/js/blockly.fieldimage_class.setalt_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.setonclickhandler_1_method",
+ "id": "reference/js/blockly.fieldimage_class.setonclickhandler_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.showeditor__1_method",
+ "id": "reference/js/blockly.fieldimage_class.showeditor__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimage_class.updatesize__1_method",
+ "id": "reference/js/blockly.fieldimage_class.updatesize__1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FieldLabel",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldlabel_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabel_class._constructor__1_constructor",
+ "id": "reference/js/blockly.fieldlabel_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabel_class.configure__1_method",
+ "id": "reference/js/blockly.fieldlabel_class.configure__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabel_class.doclassvalidation__1_method",
+ "id": "reference/js/blockly.fieldlabel_class.doclassvalidation__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabel_class.editable_property",
+ "id": "reference/js/blockly.fieldlabel_class.editable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabel_class.initview_1_method",
+ "id": "reference/js/blockly.fieldlabel_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabel_class.maxdisplaylength_property",
+ "id": "reference/js/blockly.fieldlabel_class.maxdisplaylength_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabel_class.setclass_1_method",
+ "id": "reference/js/blockly.fieldlabel_class.setclass_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FieldLabelSerializable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldlabelserializable_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabelserializable_class._constructor__1_constructor",
+ "id": "reference/js/blockly.fieldlabelserializable_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabelserializable_class.editable_property",
+ "id": "reference/js/blockly.fieldlabelserializable_class.editable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabelserializable_class.serializable_property",
+ "id": "reference/js/blockly.fieldlabelserializable_class.serializable_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FieldNavigationPolicy",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldnavigationpolicy_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldnavigationpolicy_class.getfirstchild_1_method",
+ "id": "reference/js/blockly.fieldnavigationpolicy_class.getfirstchild_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnavigationpolicy_class.getnextsibling_1_method",
+ "id": "reference/js/blockly.fieldnavigationpolicy_class.getnextsibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnavigationpolicy_class.getparent_1_method",
+ "id": "reference/js/blockly.fieldnavigationpolicy_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnavigationpolicy_class.getprevioussibling_1_method",
+ "id": "reference/js/blockly.fieldnavigationpolicy_class.getprevioussibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnavigationpolicy_class.isapplicable_1_method",
+ "id": "reference/js/blockly.fieldnavigationpolicy_class.isapplicable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnavigationpolicy_class.isnavigable_1_method",
+ "id": "reference/js/blockly.fieldnavigationpolicy_class.isnavigable_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FieldNumber",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldnumber_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class._constructor__1_constructor",
+ "id": "reference/js/blockly.fieldnumber_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.configure__1_method",
+ "id": "reference/js/blockly.fieldnumber_class.configure__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.doclassvalidation__1_method",
+ "id": "reference/js/blockly.fieldnumber_class.doclassvalidation__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.getmax_1_method",
+ "id": "reference/js/blockly.fieldnumber_class.getmax_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.getmin_1_method",
+ "id": "reference/js/blockly.fieldnumber_class.getmin_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.getprecision_1_method",
+ "id": "reference/js/blockly.fieldnumber_class.getprecision_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.initview_1_method",
+ "id": "reference/js/blockly.fieldnumber_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.max__property",
+ "id": "reference/js/blockly.fieldnumber_class.max__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.min__property",
+ "id": "reference/js/blockly.fieldnumber_class.min__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.precision__property",
+ "id": "reference/js/blockly.fieldnumber_class.precision__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.setconstraints_1_method",
+ "id": "reference/js/blockly.fieldnumber_class.setconstraints_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.setmax_1_method",
+ "id": "reference/js/blockly.fieldnumber_class.setmax_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.setmin_1_method",
+ "id": "reference/js/blockly.fieldnumber_class.setmin_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.setprecision_1_method",
+ "id": "reference/js/blockly.fieldnumber_class.setprecision_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.spellcheck__property",
+ "id": "reference/js/blockly.fieldnumber_class.spellcheck__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumber_class.widgetcreate__1_method",
+ "id": "reference/js/blockly.fieldnumber_class.widgetcreate__1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FieldTextInput",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldtextinput_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldtextinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.fieldtextinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldtextinput_class.doclassvalidation__1_method",
+ "id": "reference/js/blockly.fieldtextinput_class.doclassvalidation__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldtextinput_class.initview_1_method",
+ "id": "reference/js/blockly.fieldtextinput_class.initview_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FieldVariable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldvariable_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class._constructor__1_constructor",
+ "id": "reference/js/blockly.fieldvariable_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.configure__1_method",
+ "id": "reference/js/blockly.fieldvariable_class.configure__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.defaultvariablename_property",
+ "id": "reference/js/blockly.fieldvariable_class.defaultvariablename_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.doclassvalidation__1_method",
+ "id": "reference/js/blockly.fieldvariable_class.doclassvalidation__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.dovalueupdate__1_method",
+ "id": "reference/js/blockly.fieldvariable_class.dovalueupdate__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.dropdowncreate_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.dropdowncreate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.fromxml_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.fromxml_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.getdefaulttype_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.getdefaulttype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.gettext_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.gettext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.getvalidator_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.getvalidator_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.getvalue_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.getvalue_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.initmodel_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.initmodel_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.initview_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.menugenerator__property",
+ "id": "reference/js/blockly.fieldvariable_class.menugenerator__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.onitemselected__1_method",
+ "id": "reference/js/blockly.fieldvariable_class.onitemselected__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.serializable_property",
+ "id": "reference/js/blockly.fieldvariable_class.serializable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.setsourceblock_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.setsourceblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.shouldaddborderrect__1_method",
+ "id": "reference/js/blockly.fieldvariable_class.shouldaddborderrect__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.toxml_1_method",
+ "id": "reference/js/blockly.fieldvariable_class.toxml_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariable_class.variabletypes_property",
+ "id": "reference/js/blockly.fieldvariable_class.variabletypes_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FlyoutButton",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.flyoutbutton_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.border_radius_property",
+ "id": "reference/js/blockly.flyoutbutton_class.border_radius_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.callbackkey_property",
+ "id": "reference/js/blockly.flyoutbutton_class.callbackkey_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.canbefocused_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.createdom_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.createdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.cursorsvg_property",
+ "id": "reference/js/blockly.flyoutbutton_class.cursorsvg_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.dispose_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.getboundingrectangle_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.getboundingrectangle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.getbuttontext_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.getbuttontext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.getsvgroot_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.getsvgroot_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.gettargetworkspace_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.gettargetworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.getworkspace_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.getworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.height_property",
+ "id": "reference/js/blockly.flyoutbutton_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.info_property",
+ "id": "reference/js/blockly.flyoutbutton_class.info_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.islabel_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.islabel_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.moveby_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.moveby_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.moveto_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.moveto_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.setcursorsvg_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.setcursorsvg_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.show_1_method",
+ "id": "reference/js/blockly.flyoutbutton_class.show_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.text_margin_x_property",
+ "id": "reference/js/blockly.flyoutbutton_class.text_margin_x_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.text_margin_y_property",
+ "id": "reference/js/blockly.flyoutbutton_class.text_margin_y_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbutton_class.width_property",
+ "id": "reference/js/blockly.flyoutbutton_class.width_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FlyoutButtonNavigationPolicy",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbuttonnavigationpolicy_class.getfirstchild_1_method",
+ "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.getfirstchild_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbuttonnavigationpolicy_class.getnextsibling_1_method",
+ "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.getnextsibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbuttonnavigationpolicy_class.getparent_1_method",
+ "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbuttonnavigationpolicy_class.getprevioussibling_1_method",
+ "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.getprevioussibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbuttonnavigationpolicy_class.isapplicable_1_method",
+ "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.isapplicable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutbuttonnavigationpolicy_class.isnavigable_1_method",
+ "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.isnavigable_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FlyoutItem",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.flyoutitem_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.flyoutitem_class._constructor__1_constructor",
+ "id": "reference/js/blockly.flyoutitem_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutitem_class.getelement_1_method",
+ "id": "reference/js/blockly.flyoutitem_class.getelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutitem_class.gettype_1_method",
+ "id": "reference/js/blockly.flyoutitem_class.gettype_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FlyoutMetricsManager",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.flyoutmetricsmanager_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.flyoutmetricsmanager_class._constructor__1_constructor",
+ "id": "reference/js/blockly.flyoutmetricsmanager_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutmetricsmanager_class.flyout__property",
+ "id": "reference/js/blockly.flyoutmetricsmanager_class.flyout__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutmetricsmanager_class.getcontentmetrics_1_method",
+ "id": "reference/js/blockly.flyoutmetricsmanager_class.getcontentmetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutmetricsmanager_class.getscrollmetrics_1_method",
+ "id": "reference/js/blockly.flyoutmetricsmanager_class.getscrollmetrics_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FlyoutNavigationPolicy",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.flyoutnavigationpolicy_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.flyoutnavigationpolicy_class._constructor__1_constructor",
+ "id": "reference/js/blockly.flyoutnavigationpolicy_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutnavigationpolicy_class.getfirstchild_1_method",
+ "id": "reference/js/blockly.flyoutnavigationpolicy_class.getfirstchild_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutnavigationpolicy_class.getnextsibling_1_method",
+ "id": "reference/js/blockly.flyoutnavigationpolicy_class.getnextsibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutnavigationpolicy_class.getparent_1_method",
+ "id": "reference/js/blockly.flyoutnavigationpolicy_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutnavigationpolicy_class.getprevioussibling_1_method",
+ "id": "reference/js/blockly.flyoutnavigationpolicy_class.getprevioussibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutnavigationpolicy_class.isapplicable_1_method",
+ "id": "reference/js/blockly.flyoutnavigationpolicy_class.isapplicable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutnavigationpolicy_class.isnavigable_1_method",
+ "id": "reference/js/blockly.flyoutnavigationpolicy_class.isnavigable_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FlyoutNavigator",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.flyoutnavigator_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.flyoutnavigator_class._constructor__1_constructor",
+ "id": "reference/js/blockly.flyoutnavigator_class._constructor__1_constructor"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FlyoutSeparator",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.flyoutseparator_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparator_class._constructor__1_constructor",
+ "id": "reference/js/blockly.flyoutseparator_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparator_class.canbefocused_1_method",
+ "id": "reference/js/blockly.flyoutseparator_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparator_class.getboundingrectangle_1_method",
+ "id": "reference/js/blockly.flyoutseparator_class.getboundingrectangle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparator_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.flyoutseparator_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparator_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.flyoutseparator_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparator_class.isnavigable_1_method",
+ "id": "reference/js/blockly.flyoutseparator_class.isnavigable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparator_class.moveby_1_method",
+ "id": "reference/js/blockly.flyoutseparator_class.moveby_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparator_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.flyoutseparator_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparator_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.flyoutseparator_class.onnodefocus_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FlyoutSeparatorNavigationPolicy",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparatornavigationpolicy_class.getfirstchild_1_method",
+ "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.getfirstchild_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparatornavigationpolicy_class.getnextsibling_1_method",
+ "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.getnextsibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparatornavigationpolicy_class.getparent_1_method",
+ "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparatornavigationpolicy_class.getprevioussibling_1_method",
+ "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.getprevioussibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparatornavigationpolicy_class.isapplicable_1_method",
+ "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.isapplicable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyoutseparatornavigationpolicy_class.isnavigable_1_method",
+ "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.isnavigable_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FocusableTreeTraverser",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.focusabletreetraverser_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.focusabletreetraverser_class.findfocusablenodefor_1_method",
+ "id": "reference/js/blockly.focusabletreetraverser_class.findfocusablenodefor_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusabletreetraverser_class.findfocusednode_1_method",
+ "id": "reference/js/blockly.focusabletreetraverser_class.findfocusednode_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "FocusManager",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.focusmanager_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class._constructor__1_constructor",
+ "id": "reference/js/blockly.focusmanager_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.active_focus_node_css_class_name_property",
+ "id": "reference/js/blockly.focusmanager_class.active_focus_node_css_class_name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.ephemeralfocustaken_1_method",
+ "id": "reference/js/blockly.focusmanager_class.ephemeralfocustaken_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.focusnode_1_method",
+ "id": "reference/js/blockly.focusmanager_class.focusnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.focustree_1_method",
+ "id": "reference/js/blockly.focusmanager_class.focustree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.getfocusednode_1_method",
+ "id": "reference/js/blockly.focusmanager_class.getfocusednode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.getfocusedtree_1_method",
+ "id": "reference/js/blockly.focusmanager_class.getfocusedtree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.getfocusmanager_1_method",
+ "id": "reference/js/blockly.focusmanager_class.getfocusmanager_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.isregistered_1_method",
+ "id": "reference/js/blockly.focusmanager_class.isregistered_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.passive_focus_node_css_class_name_property",
+ "id": "reference/js/blockly.focusmanager_class.passive_focus_node_css_class_name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.registertree_1_method",
+ "id": "reference/js/blockly.focusmanager_class.registertree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.takeephemeralfocus_1_method",
+ "id": "reference/js/blockly.focusmanager_class.takeephemeralfocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.focusmanager_class.unregistertree_1_method",
+ "id": "reference/js/blockly.focusmanager_class.unregistertree_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Gesture",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.gesture_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.gesture_class._constructor__1_constructor",
+ "id": "reference/js/blockly.gesture_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.gesture_class.currentdropdownowner_property",
+ "id": "reference/js/blockly.gesture_class.currentdropdownowner_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.gesture_class.getcurrentdragger_1_method",
+ "id": "reference/js/blockly.gesture_class.getcurrentdragger_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.gesture_class.inprogress_1_method",
+ "id": "reference/js/blockly.gesture_class.inprogress_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.gesture_class.isending__property",
+ "id": "reference/js/blockly.gesture_class.isending__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.gesture_class.startworkspace__property",
+ "id": "reference/js/blockly.gesture_class.startworkspace__property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Grid",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.grid_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.grid_class._constructor__1_constructor",
+ "id": "reference/js/blockly.grid_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.grid_class.alignxy_1_method",
+ "id": "reference/js/blockly.grid_class.alignxy_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.grid_class.getlength_1_method",
+ "id": "reference/js/blockly.grid_class.getlength_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.grid_class.getspacing_1_method",
+ "id": "reference/js/blockly.grid_class.getspacing_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.grid_class.setlength_1_method",
+ "id": "reference/js/blockly.grid_class.setlength_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.grid_class.setsnaptogrid_1_method",
+ "id": "reference/js/blockly.grid_class.setsnaptogrid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.grid_class.setspacing_1_method",
+ "id": "reference/js/blockly.grid_class.setspacing_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.grid_class.shouldsnap_1_method",
+ "id": "reference/js/blockly.grid_class.shouldsnap_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "HorizontalFlyout",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.horizontalflyout_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class._constructor__1_constructor",
+ "id": "reference/js/blockly.horizontalflyout_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.getclientrect_1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.getclientrect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.getx_1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.getx_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.gety_1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.gety_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.horizontallayout_property",
+ "id": "reference/js/blockly.horizontalflyout_class.horizontallayout_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.isdragtowardworkspace_1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.isdragtowardworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.layout__1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.layout__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.position_1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.position_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.reflowinternal__1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.reflowinternal__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.scrolltostart_1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.scrolltostart_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.setmetrics__1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.setmetrics__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.horizontalflyout_class.wheel__1_method",
+ "id": "reference/js/blockly.horizontalflyout_class.wheel__1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Input",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.input_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.input_class._constructor__1_constructor",
+ "id": "reference/js/blockly.input_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.align_property",
+ "id": "reference/js/blockly.input_class.align_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.appendfield_1_method",
+ "id": "reference/js/blockly.input_class.appendfield_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.connection_property",
+ "id": "reference/js/blockly.input_class.connection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.dispose_1_method",
+ "id": "reference/js/blockly.input_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.fieldrow_property",
+ "id": "reference/js/blockly.input_class.fieldrow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.getshadowdom_1_method",
+ "id": "reference/js/blockly.input_class.getshadowdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.getsourceblock_1_method",
+ "id": "reference/js/blockly.input_class.getsourceblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.init_1_method",
+ "id": "reference/js/blockly.input_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.insertfieldat_1_method",
+ "id": "reference/js/blockly.input_class.insertfieldat_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.isvisible_1_method",
+ "id": "reference/js/blockly.input_class.isvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.makeconnection_1_method",
+ "id": "reference/js/blockly.input_class.makeconnection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.name_property",
+ "id": "reference/js/blockly.input_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.removefield_1_method",
+ "id": "reference/js/blockly.input_class.removefield_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.setalign_1_method",
+ "id": "reference/js/blockly.input_class.setalign_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.setcheck_1_method",
+ "id": "reference/js/blockly.input_class.setcheck_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.setshadowdom_1_method",
+ "id": "reference/js/blockly.input_class.setshadowdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.input_class.type_property",
+ "id": "reference/js/blockly.input_class.type_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "InsertionMarkerPreviewer",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.insertionmarkerpreviewer_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.insertionmarkerpreviewer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.insertionmarkerpreviewer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.insertionmarkerpreviewer_class.dispose_1_method",
+ "id": "reference/js/blockly.insertionmarkerpreviewer_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.insertionmarkerpreviewer_class.hidepreview_1_method",
+ "id": "reference/js/blockly.insertionmarkerpreviewer_class.hidepreview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.insertionmarkerpreviewer_class.previewconnection_1_method",
+ "id": "reference/js/blockly.insertionmarkerpreviewer_class.previewconnection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.insertionmarkerpreviewer_class.previewreplacement_1_method",
+ "id": "reference/js/blockly.insertionmarkerpreviewer_class.previewreplacement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.insertionmarkerpreviewer_class.serializeblocktoinsertionmarker_1_method",
+ "id": "reference/js/blockly.insertionmarkerpreviewer_class.serializeblocktoinsertionmarker_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "KeyboardNavigationController",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.keyboardnavigationcontroller_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.keyboardnavigationcontroller_class.getisactive_1_method",
+ "id": "reference/js/blockly.keyboardnavigationcontroller_class.getisactive_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.keyboardnavigationcontroller_class.setisactive_1_method",
+ "id": "reference/js/blockly.keyboardnavigationcontroller_class.setisactive_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "LabelFlyoutInflater",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.labelflyoutinflater_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.labelflyoutinflater_class.disposeitem_1_method",
+ "id": "reference/js/blockly.labelflyoutinflater_class.disposeitem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.labelflyoutinflater_class.gapforitem_1_method",
+ "id": "reference/js/blockly.labelflyoutinflater_class.gapforitem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.labelflyoutinflater_class.gettype_1_method",
+ "id": "reference/js/blockly.labelflyoutinflater_class.gettype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.labelflyoutinflater_class.load_1_method",
+ "id": "reference/js/blockly.labelflyoutinflater_class.load_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "LineCursor",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.linecursor_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class._constructor__1_constructor",
+ "id": "reference/js/blockly.linecursor_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.atendofline_1_method",
+ "id": "reference/js/blockly.linecursor_class.atendofline_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.getcurnode_1_method",
+ "id": "reference/js/blockly.linecursor_class.getcurnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.getfirstnode_1_method",
+ "id": "reference/js/blockly.linecursor_class.getfirstnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.getlastnode_1_method",
+ "id": "reference/js/blockly.linecursor_class.getlastnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.getnextnode_1_method",
+ "id": "reference/js/blockly.linecursor_class.getnextnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.getpreviousnode_1_method",
+ "id": "reference/js/blockly.linecursor_class.getpreviousnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.in_1_method",
+ "id": "reference/js/blockly.linecursor_class.in_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.next_1_method",
+ "id": "reference/js/blockly.linecursor_class.next_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.out_1_method",
+ "id": "reference/js/blockly.linecursor_class.out_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.postdelete_1_method",
+ "id": "reference/js/blockly.linecursor_class.postdelete_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.predelete_1_method",
+ "id": "reference/js/blockly.linecursor_class.predelete_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.prev_1_method",
+ "id": "reference/js/blockly.linecursor_class.prev_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.setcurnode_1_method",
+ "id": "reference/js/blockly.linecursor_class.setcurnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.type_property",
+ "id": "reference/js/blockly.linecursor_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.linecursor_class.workspace_property",
+ "id": "reference/js/blockly.linecursor_class.workspace_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Marker",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.marker_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.marker_class.colour_property",
+ "id": "reference/js/blockly.marker_class.colour_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.marker_class.curnode_property",
+ "id": "reference/js/blockly.marker_class.curnode_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.marker_class.dispose_1_method",
+ "id": "reference/js/blockly.marker_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.marker_class.getcurnode_1_method",
+ "id": "reference/js/blockly.marker_class.getcurnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.marker_class.getsourceblock_1_method",
+ "id": "reference/js/blockly.marker_class.getsourceblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.marker_class.getsourceblockfromnode_1_method",
+ "id": "reference/js/blockly.marker_class.getsourceblockfromnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.marker_class.setcurnode_1_method",
+ "id": "reference/js/blockly.marker_class.setcurnode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.marker_class.type_property",
+ "id": "reference/js/blockly.marker_class.type_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "MarkerManager",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.markermanager_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.markermanager_class.getcursor_1_method",
+ "id": "reference/js/blockly.markermanager_class.getcursor_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.markermanager_class.getmarker_1_method",
+ "id": "reference/js/blockly.markermanager_class.getmarker_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.markermanager_class.local_marker_property",
+ "id": "reference/js/blockly.markermanager_class.local_marker_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.markermanager_class.registermarker_1_method",
+ "id": "reference/js/blockly.markermanager_class.registermarker_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.markermanager_class.setcursor_1_method",
+ "id": "reference/js/blockly.markermanager_class.setcursor_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.markermanager_class.unregistermarker_1_method",
+ "id": "reference/js/blockly.markermanager_class.unregistermarker_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Menu",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.menu_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.menu_class._constructor__1_constructor",
+ "id": "reference/js/blockly.menu_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.menu_class.dispose_1_method",
+ "id": "reference/js/blockly.menu_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.menu_class.openingcoords_property",
+ "id": "reference/js/blockly.menu_class.openingcoords_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.menu_class.render_1_method",
+ "id": "reference/js/blockly.menu_class.render_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "MenuItem",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.menuitem_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.menuitem_class._constructor__1_constructor",
+ "id": "reference/js/blockly.menuitem_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.menuitem_class.createdom_1_method",
+ "id": "reference/js/blockly.menuitem_class.createdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.menuitem_class.dispose_1_method",
+ "id": "reference/js/blockly.menuitem_class.dispose_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "MetricsManager",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.metricsmanager_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class._constructor__1_constructor",
+ "id": "reference/js/blockly.metricsmanager_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getabsolutemetrics_1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getabsolutemetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getcomputedfixededges__1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getcomputedfixededges__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getcontentmetrics_1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getcontentmetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getdimensionspx__1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getdimensionspx__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getflyoutmetrics_1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getflyoutmetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getmetrics_1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getmetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getpaddedcontent__1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getpaddedcontent__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getscrollmetrics_1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getscrollmetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getsvgmetrics_1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getsvgmetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.gettoolboxmetrics_1_method",
+ "id": "reference/js/blockly.metricsmanager_class.gettoolboxmetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getuimetrics_1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getuimetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.getviewmetrics_1_method",
+ "id": "reference/js/blockly.metricsmanager_class.getviewmetrics_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_class.workspace__property",
+ "id": "reference/js/blockly.metricsmanager_class.workspace__property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Names",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.names_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.names_class._constructor__1_constructor",
+ "id": "reference/js/blockly.names_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.names_class.developer_variable_type_property",
+ "id": "reference/js/blockly.names_class.developer_variable_type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.names_class.equals_1_method",
+ "id": "reference/js/blockly.names_class.equals_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.names_class.getdistinctname_1_method",
+ "id": "reference/js/blockly.names_class.getdistinctname_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.names_class.getname_1_method",
+ "id": "reference/js/blockly.names_class.getname_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.names_class.getusernames_1_method",
+ "id": "reference/js/blockly.names_class.getusernames_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.names_class.populateprocedures_1_method",
+ "id": "reference/js/blockly.names_class.populateprocedures_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.names_class.populatevariables_1_method",
+ "id": "reference/js/blockly.names_class.populatevariables_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.names_class.reset_1_method",
+ "id": "reference/js/blockly.names_class.reset_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.names_class.setvariablemap_1_method",
+ "id": "reference/js/blockly.names_class.setvariablemap_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Navigator",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.navigator_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.navigator_class.addnavigationpolicy_1_method",
+ "id": "reference/js/blockly.navigator_class.addnavigationpolicy_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.navigator_class.getfirstchild_1_method",
+ "id": "reference/js/blockly.navigator_class.getfirstchild_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.navigator_class.getnextsibling_1_method",
+ "id": "reference/js/blockly.navigator_class.getnextsibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.navigator_class.getparent_1_method",
+ "id": "reference/js/blockly.navigator_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.navigator_class.getprevioussibling_1_method",
+ "id": "reference/js/blockly.navigator_class.getprevioussibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.navigator_class.rules_property",
+ "id": "reference/js/blockly.navigator_class.rules_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Options",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.options_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.options_class._constructor__1_constructor",
+ "id": "reference/js/blockly.options_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.collapse_property",
+ "id": "reference/js/blockly.options_class.collapse_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.comments_property",
+ "id": "reference/js/blockly.options_class.comments_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.disable_property",
+ "id": "reference/js/blockly.options_class.disable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.getmetrics_property",
+ "id": "reference/js/blockly.options_class.getmetrics_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.gridoptions_property",
+ "id": "reference/js/blockly.options_class.gridoptions_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.gridpattern_property",
+ "id": "reference/js/blockly.options_class.gridpattern_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.hascategories_property",
+ "id": "reference/js/blockly.options_class.hascategories_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.hascss_property",
+ "id": "reference/js/blockly.options_class.hascss_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.hasscrollbars_property",
+ "id": "reference/js/blockly.options_class.hasscrollbars_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.hassounds_property",
+ "id": "reference/js/blockly.options_class.hassounds_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.hastrashcan_property",
+ "id": "reference/js/blockly.options_class.hastrashcan_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.horizontallayout_property",
+ "id": "reference/js/blockly.options_class.horizontallayout_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.languagetree_property",
+ "id": "reference/js/blockly.options_class.languagetree_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.maxblocks_property",
+ "id": "reference/js/blockly.options_class.maxblocks_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.maxinstances_property",
+ "id": "reference/js/blockly.options_class.maxinstances_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.maxtrashcancontents_property",
+ "id": "reference/js/blockly.options_class.maxtrashcancontents_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.modalinputs_property",
+ "id": "reference/js/blockly.options_class.modalinputs_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.moveoptions_property",
+ "id": "reference/js/blockly.options_class.moveoptions_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.onebasedindex_property",
+ "id": "reference/js/blockly.options_class.onebasedindex_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.parentworkspace_property",
+ "id": "reference/js/blockly.options_class.parentworkspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.pathtomedia_property",
+ "id": "reference/js/blockly.options_class.pathtomedia_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.plugins_property",
+ "id": "reference/js/blockly.options_class.plugins_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.readonly_property",
+ "id": "reference/js/blockly.options_class.readonly_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.renderer_property",
+ "id": "reference/js/blockly.options_class.renderer_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.rendereroverrides_property",
+ "id": "reference/js/blockly.options_class.rendereroverrides_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.rtl_property",
+ "id": "reference/js/blockly.options_class.rtl_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.setmetrics_property",
+ "id": "reference/js/blockly.options_class.setmetrics_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.theme_property",
+ "id": "reference/js/blockly.options_class.theme_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.toolboxposition_property",
+ "id": "reference/js/blockly.options_class.toolboxposition_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_class.zoomoptions_property",
+ "id": "reference/js/blockly.options_class.zoomoptions_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "RenderedConnection",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.renderedconnection_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class._constructor__1_constructor",
+ "id": "reference/js/blockly.renderedconnection_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.canbefocused_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.closest_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.closest_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.connect__1_method",
+ "id": "reference/js/blockly.renderedconnection_class.connect__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.disconnectinternal_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.disconnectinternal_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.distancefrom_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.distancefrom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.getoffsetinblock_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.getoffsetinblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.getsourceblock_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.getsourceblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.highlight_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.highlight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.ishighlighted_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.ishighlighted_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.moveby_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.moveby_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.moveto_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.moveto_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.movetooffset_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.movetooffset_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.oncheckchanged__1_method",
+ "id": "reference/js/blockly.renderedconnection_class.oncheckchanged__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.respawnshadow__1_method",
+ "id": "reference/js/blockly.renderedconnection_class.respawnshadow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.setcheck_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.setcheck_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.setoffsetinblock_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.setoffsetinblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.showcontextmenu_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.showcontextmenu_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.sourceblock__property",
+ "id": "reference/js/blockly.renderedconnection_class.sourceblock__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.starttrackingall_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.starttrackingall_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.targetblock_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.targetblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.targetconnection_property",
+ "id": "reference/js/blockly.renderedconnection_class.targetconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_class.unhighlight_1_method",
+ "id": "reference/js/blockly.renderedconnection_class.unhighlight_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Scrollbar",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.scrollbar_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class._constructor__1_constructor",
+ "id": "reference/js/blockly.scrollbar_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.dispose_1_method",
+ "id": "reference/js/blockly.scrollbar_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.isvisible_1_method",
+ "id": "reference/js/blockly.scrollbar_class.isvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.lengthattribute__property",
+ "id": "reference/js/blockly.scrollbar_class.lengthattribute__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.onmousedownbarwrapper__property",
+ "id": "reference/js/blockly.scrollbar_class.onmousedownbarwrapper__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.onmousedownhandlewrapper__property",
+ "id": "reference/js/blockly.scrollbar_class.onmousedownhandlewrapper__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.onmousemovewrapper__property",
+ "id": "reference/js/blockly.scrollbar_class.onmousemovewrapper__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.onmouseupwrapper__property",
+ "id": "reference/js/blockly.scrollbar_class.onmouseupwrapper__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.positionattribute__property",
+ "id": "reference/js/blockly.scrollbar_class.positionattribute__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.resize_1_method",
+ "id": "reference/js/blockly.scrollbar_class.resize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.resizecontenthorizontal_1_method",
+ "id": "reference/js/blockly.scrollbar_class.resizecontenthorizontal_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.resizecontentvertical_1_method",
+ "id": "reference/js/blockly.scrollbar_class.resizecontentvertical_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.resizeviewhorizontal_1_method",
+ "id": "reference/js/blockly.scrollbar_class.resizeviewhorizontal_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.resizeviewvertical_1_method",
+ "id": "reference/js/blockly.scrollbar_class.resizeviewvertical_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.scrollbarthickness_property",
+ "id": "reference/js/blockly.scrollbar_class.scrollbarthickness_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.set_1_method",
+ "id": "reference/js/blockly.scrollbar_class.set_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.setcontainervisible_1_method",
+ "id": "reference/js/blockly.scrollbar_class.setcontainervisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.sethandleposition_1_method",
+ "id": "reference/js/blockly.scrollbar_class.sethandleposition_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.setorigin_1_method",
+ "id": "reference/js/blockly.scrollbar_class.setorigin_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.setvisible_1_method",
+ "id": "reference/js/blockly.scrollbar_class.setvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbar_class.updatedisplay__1_method",
+ "id": "reference/js/blockly.scrollbar_class.updatedisplay__1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ScrollbarPair",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.scrollbarpair_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class._constructor__1_constructor",
+ "id": "reference/js/blockly.scrollbarpair_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.canscrollhorizontally_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.canscrollhorizontally_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.canscrollvertically_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.canscrollvertically_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.corner__property",
+ "id": "reference/js/blockly.scrollbarpair_class.corner__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.dispose_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.hscroll_property",
+ "id": "reference/js/blockly.scrollbarpair_class.hscroll_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.isvisible_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.isvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.resize_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.resize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.resizecontent_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.resizecontent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.resizeview_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.resizeview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.set_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.set_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.setcontainervisible_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.setcontainervisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.setvisible_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.setvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.setx_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.setx_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.sety_1_method",
+ "id": "reference/js/blockly.scrollbarpair_class.sety_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.scrollbarpair_class.vscroll_property",
+ "id": "reference/js/blockly.scrollbarpair_class.vscroll_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "SeparatorFlyoutInflater",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.separatorflyoutinflater_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.separatorflyoutinflater_class.disposeitem_1_method",
+ "id": "reference/js/blockly.separatorflyoutinflater_class.disposeitem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.separatorflyoutinflater_class.gapforitem_1_method",
+ "id": "reference/js/blockly.separatorflyoutinflater_class.gapforitem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.separatorflyoutinflater_class.gettype_1_method",
+ "id": "reference/js/blockly.separatorflyoutinflater_class.gettype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.separatorflyoutinflater_class.load_1_method",
+ "id": "reference/js/blockly.separatorflyoutinflater_class.load_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ShortcutRegistry",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.shortcutregistry_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.addkeymapping_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.addkeymapping_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.createserializedkey_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.createserializedkey_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.getkeycodesbyshortcutname_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.getkeycodesbyshortcutname_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.getkeymap_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.getkeymap_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.getregistry_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.getregistry_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.getshortcutnamesbykeycode_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.getshortcutnamesbykeycode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.onkeydown_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.onkeydown_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.register_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.register_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.registry_property",
+ "id": "reference/js/blockly.shortcutregistry_class.registry_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.removeallkeymappings_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.removeallkeymappings_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.removekeymapping_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.removekeymapping_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.reset_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.reset_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.setkeymap_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.setkeymap_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_class.unregister_1_method",
+ "id": "reference/js/blockly.shortcutregistry_class.unregister_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Theme",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.theme_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.theme_class._constructor__1_constructor",
+ "id": "reference/js/blockly.theme_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_class.definetheme_1_method",
+ "id": "reference/js/blockly.theme_class.definetheme_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_class.getcomponentstyle_1_method",
+ "id": "reference/js/blockly.theme_class.getcomponentstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_class.name_property",
+ "id": "reference/js/blockly.theme_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_class.setblockstyle_1_method",
+ "id": "reference/js/blockly.theme_class.setblockstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_class.setcategorystyle_1_method",
+ "id": "reference/js/blockly.theme_class.setcategorystyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_class.setcomponentstyle_1_method",
+ "id": "reference/js/blockly.theme_class.setcomponentstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_class.setfontstyle_1_method",
+ "id": "reference/js/blockly.theme_class.setfontstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_class.setstarthats_1_method",
+ "id": "reference/js/blockly.theme_class.setstarthats_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "doc",
+ "label": "ThemeManager",
+ "id": "reference/js/blockly.thememanager_class"
+ },
+ {
+ "type": "category",
+ "label": "Toast",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.toast_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.toast_class.createdom_1_method",
+ "id": "reference/js/blockly.toast_class.createdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toast_class.hide_1_method",
+ "id": "reference/js/blockly.toast_class.hide_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toast_class.show_1_method",
+ "id": "reference/js/blockly.toast_class.show_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Toolbox",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.toolbox_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class._constructor__1_constructor",
+ "id": "reference/js/blockly.toolbox_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.addtoolboxitem__1_method",
+ "id": "reference/js/blockly.toolbox_class.addtoolboxitem__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.attachevents__1_method",
+ "id": "reference/js/blockly.toolbox_class.attachevents__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.autohide_1_method",
+ "id": "reference/js/blockly.toolbox_class.autohide_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.boundevents__property",
+ "id": "reference/js/blockly.toolbox_class.boundevents__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.canbefocused_1_method",
+ "id": "reference/js/blockly.toolbox_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.clearselection_1_method",
+ "id": "reference/js/blockly.toolbox_class.clearselection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.contents_property",
+ "id": "reference/js/blockly.toolbox_class.contents_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.contentsdiv__property",
+ "id": "reference/js/blockly.toolbox_class.contentsdiv__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.createcontainer__1_method",
+ "id": "reference/js/blockly.toolbox_class.createcontainer__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.createcontentscontainer__1_method",
+ "id": "reference/js/blockly.toolbox_class.createcontentscontainer__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.createdom__1_method",
+ "id": "reference/js/blockly.toolbox_class.createdom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.createflyout__1_method",
+ "id": "reference/js/blockly.toolbox_class.createflyout__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.deselectitem__1_method",
+ "id": "reference/js/blockly.toolbox_class.deselectitem__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.dispose_1_method",
+ "id": "reference/js/blockly.toolbox_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getclientrect_1_method",
+ "id": "reference/js/blockly.toolbox_class.getclientrect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getflyout_1_method",
+ "id": "reference/js/blockly.toolbox_class.getflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.toolbox_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.toolbox_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getheight_1_method",
+ "id": "reference/js/blockly.toolbox_class.getheight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getnestedtrees_1_method",
+ "id": "reference/js/blockly.toolbox_class.getnestedtrees_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getpreviouslyselecteditem_1_method",
+ "id": "reference/js/blockly.toolbox_class.getpreviouslyselecteditem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getrestoredfocusablenode_1_method",
+ "id": "reference/js/blockly.toolbox_class.getrestoredfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getrootfocusablenode_1_method",
+ "id": "reference/js/blockly.toolbox_class.getrootfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getselecteditem_1_method",
+ "id": "reference/js/blockly.toolbox_class.getselecteditem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.gettoolboxitembyid_1_method",
+ "id": "reference/js/blockly.toolbox_class.gettoolboxitembyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.gettoolboxitems_1_method",
+ "id": "reference/js/blockly.toolbox_class.gettoolboxitems_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getwidth_1_method",
+ "id": "reference/js/blockly.toolbox_class.getwidth_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.getworkspace_1_method",
+ "id": "reference/js/blockly.toolbox_class.getworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.height__property",
+ "id": "reference/js/blockly.toolbox_class.height__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.htmldiv_property",
+ "id": "reference/js/blockly.toolbox_class.htmldiv_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.id_property",
+ "id": "reference/js/blockly.toolbox_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.init_1_method",
+ "id": "reference/js/blockly.toolbox_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.ishorizontal_1_method",
+ "id": "reference/js/blockly.toolbox_class.ishorizontal_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.isvisible__property",
+ "id": "reference/js/blockly.toolbox_class.isvisible__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.lookupfocusablenode_1_method",
+ "id": "reference/js/blockly.toolbox_class.lookupfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.onclick__1_method",
+ "id": "reference/js/blockly.toolbox_class.onclick__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.ondragenter_1_method",
+ "id": "reference/js/blockly.toolbox_class.ondragenter_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.ondragexit_1_method",
+ "id": "reference/js/blockly.toolbox_class.ondragexit_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.ondrop_1_method",
+ "id": "reference/js/blockly.toolbox_class.ondrop_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.onkeydown__1_method",
+ "id": "reference/js/blockly.toolbox_class.onkeydown__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.toolbox_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.toolbox_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.onshortcut_1_method",
+ "id": "reference/js/blockly.toolbox_class.onshortcut_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.ontreeblur_1_method",
+ "id": "reference/js/blockly.toolbox_class.ontreeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.ontreefocus_1_method",
+ "id": "reference/js/blockly.toolbox_class.ontreefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.position_1_method",
+ "id": "reference/js/blockly.toolbox_class.position_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.previouslyselecteditem__property",
+ "id": "reference/js/blockly.toolbox_class.previouslyselecteditem__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.refreshselection_1_method",
+ "id": "reference/js/blockly.toolbox_class.refreshselection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.rendercontents__1_method",
+ "id": "reference/js/blockly.toolbox_class.rendercontents__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.rtl_property",
+ "id": "reference/js/blockly.toolbox_class.rtl_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.selecteditem__property",
+ "id": "reference/js/blockly.toolbox_class.selecteditem__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.selectitem__1_method",
+ "id": "reference/js/blockly.toolbox_class.selectitem__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.selectitembyposition_1_method",
+ "id": "reference/js/blockly.toolbox_class.selectitembyposition_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.setselecteditem_1_method",
+ "id": "reference/js/blockly.toolbox_class.setselecteditem_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.setvisible_1_method",
+ "id": "reference/js/blockly.toolbox_class.setvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.shoulddeselectitem__1_method",
+ "id": "reference/js/blockly.toolbox_class.shoulddeselectitem__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.shouldselectitem__1_method",
+ "id": "reference/js/blockly.toolbox_class.shouldselectitem__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.toolboxdef__property",
+ "id": "reference/js/blockly.toolbox_class.toolboxdef__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.toolboxposition_property",
+ "id": "reference/js/blockly.toolbox_class.toolboxposition_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.updatecursordeletestyle__1_method",
+ "id": "reference/js/blockly.toolbox_class.updatecursordeletestyle__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.updateflyout__1_method",
+ "id": "reference/js/blockly.toolbox_class.updateflyout__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.updatewoulddelete__1_method",
+ "id": "reference/js/blockly.toolbox_class.updatewoulddelete__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.width__property",
+ "id": "reference/js/blockly.toolbox_class.width__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.workspace__property",
+ "id": "reference/js/blockly.toolbox_class.workspace__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolbox_class.woulddelete_1_method",
+ "id": "reference/js/blockly.toolbox_class.woulddelete_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ToolboxCategory",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.toolboxcategory_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class._constructor__1_constructor",
+ "id": "reference/js/blockly.toolboxcategory_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.addcolourborder__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.addcolourborder__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.allancestorsexpanded__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.allancestorsexpanded__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.borderwidth_property",
+ "id": "reference/js/blockly.toolboxcategory_class.borderwidth_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.closeicon__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.closeicon__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.colour__property",
+ "id": "reference/js/blockly.toolboxcategory_class.colour__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.createcontainer__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.createcontainer__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.createdom__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.createdom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.createicondom__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.createicondom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.createlabeldom__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.createlabeldom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.createrowcontainer__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.createrowcontainer__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.createrowcontentscontainer__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.createrowcontentscontainer__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.cssconfig__property",
+ "id": "reference/js/blockly.toolboxcategory_class.cssconfig__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.defaultbackgroundcolour_property",
+ "id": "reference/js/blockly.toolboxcategory_class.defaultbackgroundcolour_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.dispose_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.flyoutitems__property",
+ "id": "reference/js/blockly.toolboxcategory_class.flyoutitems__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.getclicktarget_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.getclicktarget_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.getcolour__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.getcolour__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.getcontents_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.getcontents_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.getdiv_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.getdiv_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.getname_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.getname_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.getparent_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.hide_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.hide_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.htmldiv__property",
+ "id": "reference/js/blockly.toolboxcategory_class.htmldiv__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.icondom__property",
+ "id": "reference/js/blockly.toolboxcategory_class.icondom__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.init_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.isdisabled__property",
+ "id": "reference/js/blockly.toolboxcategory_class.isdisabled__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.ishidden__property",
+ "id": "reference/js/blockly.toolboxcategory_class.ishidden__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.isselectable_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.isselectable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.isvisible_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.isvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.labeldom__property",
+ "id": "reference/js/blockly.toolboxcategory_class.labeldom__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.makedefaultcssconfig__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.makedefaultcssconfig__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.name__property",
+ "id": "reference/js/blockly.toolboxcategory_class.name__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.nestedpadding_property",
+ "id": "reference/js/blockly.toolboxcategory_class.nestedpadding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.onclick_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.onclick_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.openicon__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.openicon__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.parsecategorydef__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.parsecategorydef__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.parsecontents__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.parsecontents__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.refreshtheme_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.refreshtheme_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.registrationname_property",
+ "id": "reference/js/blockly.toolboxcategory_class.registrationname_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.rowcontents__property",
+ "id": "reference/js/blockly.toolboxcategory_class.rowcontents__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.rowdiv__property",
+ "id": "reference/js/blockly.toolboxcategory_class.rowdiv__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.setdisabled_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.setdisabled_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.setselected_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.setselected_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.setvisible__1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.setvisible__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.show_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.show_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.toolboxitemdef__property",
+ "id": "reference/js/blockly.toolboxcategory_class.toolboxitemdef__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_class.updateflyoutcontents_1_method",
+ "id": "reference/js/blockly.toolboxcategory_class.updateflyoutcontents_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ToolboxItem",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.toolboxitem_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class._constructor__1_constructor",
+ "id": "reference/js/blockly.toolboxitem_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.canbefocused_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.dispose_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.getclicktarget_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.getclicktarget_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.getdiv_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.getdiv_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.getid_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.getid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.getparent_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.id__property",
+ "id": "reference/js/blockly.toolboxitem_class.id__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.init_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.iscollapsible_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.iscollapsible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.isselectable_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.isselectable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.level__property",
+ "id": "reference/js/blockly.toolboxitem_class.level__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.toolboxitem_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.parent__property",
+ "id": "reference/js/blockly.toolboxitem_class.parent__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.parenttoolbox__property",
+ "id": "reference/js/blockly.toolboxitem_class.parenttoolbox__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.setvisible__1_method",
+ "id": "reference/js/blockly.toolboxitem_class.setvisible__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.toolboxitemdef__property",
+ "id": "reference/js/blockly.toolboxitem_class.toolboxitemdef__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxitem_class.workspace__property",
+ "id": "reference/js/blockly.toolboxitem_class.workspace__property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ToolboxSeparator",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.toolboxseparator_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.toolboxseparator_class._constructor__1_constructor",
+ "id": "reference/js/blockly.toolboxseparator_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxseparator_class.createdom__1_method",
+ "id": "reference/js/blockly.toolboxseparator_class.createdom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxseparator_class.cssconfig__property",
+ "id": "reference/js/blockly.toolboxseparator_class.cssconfig__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxseparator_class.dispose_1_method",
+ "id": "reference/js/blockly.toolboxseparator_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxseparator_class.getdiv_1_method",
+ "id": "reference/js/blockly.toolboxseparator_class.getdiv_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxseparator_class.init_1_method",
+ "id": "reference/js/blockly.toolboxseparator_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxseparator_class.registrationname_property",
+ "id": "reference/js/blockly.toolboxseparator_class.registrationname_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Trashcan",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.trashcan_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class._constructor__1_constructor",
+ "id": "reference/js/blockly.trashcan_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.autohide_1_method",
+ "id": "reference/js/blockly.trashcan_class.autohide_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.click_1_method",
+ "id": "reference/js/blockly.trashcan_class.click_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.closeflyout_1_method",
+ "id": "reference/js/blockly.trashcan_class.closeflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.closelid_1_method",
+ "id": "reference/js/blockly.trashcan_class.closelid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.contentsisopen_1_method",
+ "id": "reference/js/blockly.trashcan_class.contentsisopen_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.createdom_1_method",
+ "id": "reference/js/blockly.trashcan_class.createdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.dispose_1_method",
+ "id": "reference/js/blockly.trashcan_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.emptycontents_1_method",
+ "id": "reference/js/blockly.trashcan_class.emptycontents_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.getboundingrectangle_1_method",
+ "id": "reference/js/blockly.trashcan_class.getboundingrectangle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.getclientrect_1_method",
+ "id": "reference/js/blockly.trashcan_class.getclientrect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.id_property",
+ "id": "reference/js/blockly.trashcan_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.init_1_method",
+ "id": "reference/js/blockly.trashcan_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.islidopen_property",
+ "id": "reference/js/blockly.trashcan_class.islidopen_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.ondragexit_1_method",
+ "id": "reference/js/blockly.trashcan_class.ondragexit_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.ondragover_1_method",
+ "id": "reference/js/blockly.trashcan_class.ondragover_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.ondrop_1_method",
+ "id": "reference/js/blockly.trashcan_class.ondrop_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.openflyout_1_method",
+ "id": "reference/js/blockly.trashcan_class.openflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.trashcan_class.position_1_method",
+ "id": "reference/js/blockly.trashcan_class.position_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "doc",
+ "label": "UnattachedFieldError",
+ "id": "reference/js/blockly.unattachedfielderror_class"
+ },
+ {
+ "type": "category",
+ "label": "VariableMap",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.variablemap_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class._constructor__1_constructor",
+ "id": "reference/js/blockly.variablemap_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.addvariable_1_method",
+ "id": "reference/js/blockly.variablemap_class.addvariable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.changevariabletype_1_method",
+ "id": "reference/js/blockly.variablemap_class.changevariabletype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.clear_1_method",
+ "id": "reference/js/blockly.variablemap_class.clear_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.createvariable_1_method",
+ "id": "reference/js/blockly.variablemap_class.createvariable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.deletevariable_1_method",
+ "id": "reference/js/blockly.variablemap_class.deletevariable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.deletevariablebyid_1_method",
+ "id": "reference/js/blockly.variablemap_class.deletevariablebyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.getallvariablenames_1_method",
+ "id": "reference/js/blockly.variablemap_class.getallvariablenames_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.getallvariables_1_method",
+ "id": "reference/js/blockly.variablemap_class.getallvariables_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.gettypes_1_method",
+ "id": "reference/js/blockly.variablemap_class.gettypes_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.getvariable_1_method",
+ "id": "reference/js/blockly.variablemap_class.getvariable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.getvariablebyid_1_method",
+ "id": "reference/js/blockly.variablemap_class.getvariablebyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.getvariablesoftype_1_method",
+ "id": "reference/js/blockly.variablemap_class.getvariablesoftype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.getvariableusesbyid_1_method",
+ "id": "reference/js/blockly.variablemap_class.getvariableusesbyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.potentialmap_property",
+ "id": "reference/js/blockly.variablemap_class.potentialmap_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.renamevariable_1_method",
+ "id": "reference/js/blockly.variablemap_class.renamevariable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.renamevariablebyid_1_method",
+ "id": "reference/js/blockly.variablemap_class.renamevariablebyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemap_class.workspace_property",
+ "id": "reference/js/blockly.variablemap_class.workspace_property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "VariableModel",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.variablemodel_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.variablemodel_class._constructor__1_constructor",
+ "id": "reference/js/blockly.variablemodel_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemodel_class.getid_1_method",
+ "id": "reference/js/blockly.variablemodel_class.getid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemodel_class.getname_1_method",
+ "id": "reference/js/blockly.variablemodel_class.getname_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemodel_class.gettype_1_method",
+ "id": "reference/js/blockly.variablemodel_class.gettype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemodel_class.getworkspace_1_method",
+ "id": "reference/js/blockly.variablemodel_class.getworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemodel_class.load_1_method",
+ "id": "reference/js/blockly.variablemodel_class.load_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemodel_class.save_1_method",
+ "id": "reference/js/blockly.variablemodel_class.save_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemodel_class.setname_1_method",
+ "id": "reference/js/blockly.variablemodel_class.setname_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablemodel_class.settype_1_method",
+ "id": "reference/js/blockly.variablemodel_class.settype_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "VerticalFlyout",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.verticalflyout_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class._constructor__1_constructor",
+ "id": "reference/js/blockly.verticalflyout_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.getclientrect_1_method",
+ "id": "reference/js/blockly.verticalflyout_class.getclientrect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.getx_1_method",
+ "id": "reference/js/blockly.verticalflyout_class.getx_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.gety_1_method",
+ "id": "reference/js/blockly.verticalflyout_class.gety_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.isdragtowardworkspace_1_method",
+ "id": "reference/js/blockly.verticalflyout_class.isdragtowardworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.layout__1_method",
+ "id": "reference/js/blockly.verticalflyout_class.layout__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.position_1_method",
+ "id": "reference/js/blockly.verticalflyout_class.position_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.reflowinternal__1_method",
+ "id": "reference/js/blockly.verticalflyout_class.reflowinternal__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.registryname_property",
+ "id": "reference/js/blockly.verticalflyout_class.registryname_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.scrolltostart_1_method",
+ "id": "reference/js/blockly.verticalflyout_class.scrolltostart_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.setmetrics__1_method",
+ "id": "reference/js/blockly.verticalflyout_class.setmetrics__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.verticalflyout_class.wheel__1_method",
+ "id": "reference/js/blockly.verticalflyout_class.wheel__1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Workspace",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.workspace_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class._constructor__1_constructor",
+ "id": "reference/js/blockly.workspace_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.addchangelistener_1_method",
+ "id": "reference/js/blockly.workspace_class.addchangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.addtopblock_1_method",
+ "id": "reference/js/blockly.workspace_class.addtopblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.addtypedblock_1_method",
+ "id": "reference/js/blockly.workspace_class.addtypedblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.allinputsfilled_1_method",
+ "id": "reference/js/blockly.workspace_class.allinputsfilled_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.clear_1_method",
+ "id": "reference/js/blockly.workspace_class.clear_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.clearundo_1_method",
+ "id": "reference/js/blockly.workspace_class.clearundo_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.connectionchecker_property",
+ "id": "reference/js/blockly.workspace_class.connectionchecker_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.connectiondblist_property",
+ "id": "reference/js/blockly.workspace_class.connectiondblist_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.createvariable_1_method",
+ "id": "reference/js/blockly.workspace_class.createvariable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.deletevariablebyid_1_method",
+ "id": "reference/js/blockly.workspace_class.deletevariablebyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.dispose_1_method",
+ "id": "reference/js/blockly.workspace_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.firechangelistener_1_method",
+ "id": "reference/js/blockly.workspace_class.firechangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getall_1_method",
+ "id": "reference/js/blockly.workspace_class.getall_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getallblocks_1_method",
+ "id": "reference/js/blockly.workspace_class.getallblocks_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getallvariablenames_1_method",
+ "id": "reference/js/blockly.workspace_class.getallvariablenames_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getallvariables_1_method",
+ "id": "reference/js/blockly.workspace_class.getallvariables_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getblockbyid_1_method",
+ "id": "reference/js/blockly.workspace_class.getblockbyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getblocksbytype_1_method",
+ "id": "reference/js/blockly.workspace_class.getblocksbytype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getbyid_1_method",
+ "id": "reference/js/blockly.workspace_class.getbyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getcommentbyid_1_method",
+ "id": "reference/js/blockly.workspace_class.getcommentbyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getpotentialvariablemap_1_method",
+ "id": "reference/js/blockly.workspace_class.getpotentialvariablemap_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getproceduremap_1_method",
+ "id": "reference/js/blockly.workspace_class.getproceduremap_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getrootworkspace_1_method",
+ "id": "reference/js/blockly.workspace_class.getrootworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.gettopblocks_1_method",
+ "id": "reference/js/blockly.workspace_class.gettopblocks_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getvariable_1_method",
+ "id": "reference/js/blockly.workspace_class.getvariable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getvariablebyid_1_method",
+ "id": "reference/js/blockly.workspace_class.getvariablebyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getvariablemap_1_method",
+ "id": "reference/js/blockly.workspace_class.getvariablemap_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getvariablemapclass_1_method",
+ "id": "reference/js/blockly.workspace_class.getvariablemapclass_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getvariablesoftype_1_method",
+ "id": "reference/js/blockly.workspace_class.getvariablesoftype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getvariableusesbyid_1_method",
+ "id": "reference/js/blockly.workspace_class.getvariableusesbyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.getwidth_1_method",
+ "id": "reference/js/blockly.workspace_class.getwidth_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.hasblocklimits_1_method",
+ "id": "reference/js/blockly.workspace_class.hasblocklimits_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.horizontallayout_property",
+ "id": "reference/js/blockly.workspace_class.horizontallayout_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.id_property",
+ "id": "reference/js/blockly.workspace_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.iscapacityavailable_1_method",
+ "id": "reference/js/blockly.workspace_class.iscapacityavailable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.isflyout_property",
+ "id": "reference/js/blockly.workspace_class.isflyout_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.ismutator_property",
+ "id": "reference/js/blockly.workspace_class.ismutator_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.isreadonly_1_method",
+ "id": "reference/js/blockly.workspace_class.isreadonly_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.max_undo_property",
+ "id": "reference/js/blockly.workspace_class.max_undo_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.newblock_1_method",
+ "id": "reference/js/blockly.workspace_class.newblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.newcomment_1_method",
+ "id": "reference/js/blockly.workspace_class.newcomment_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.options_property",
+ "id": "reference/js/blockly.workspace_class.options_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.redostack__property",
+ "id": "reference/js/blockly.workspace_class.redostack__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.remainingcapacity_1_method",
+ "id": "reference/js/blockly.workspace_class.remainingcapacity_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.remainingcapacityoftype_1_method",
+ "id": "reference/js/blockly.workspace_class.remainingcapacityoftype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.removechangelistener_1_method",
+ "id": "reference/js/blockly.workspace_class.removechangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.removetopblock_1_method",
+ "id": "reference/js/blockly.workspace_class.removetopblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.removetypedblock_1_method",
+ "id": "reference/js/blockly.workspace_class.removetypedblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.renamevariablebyid_1_method",
+ "id": "reference/js/blockly.workspace_class.renamevariablebyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.rendered_property",
+ "id": "reference/js/blockly.workspace_class.rendered_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.rtl_property",
+ "id": "reference/js/blockly.workspace_class.rtl_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.scan_angle_property",
+ "id": "reference/js/blockly.workspace_class.scan_angle_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.setisreadonly_1_method",
+ "id": "reference/js/blockly.workspace_class.setisreadonly_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.sortbyorigin_1_method",
+ "id": "reference/js/blockly.workspace_class.sortbyorigin_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.toolboxposition_property",
+ "id": "reference/js/blockly.workspace_class.toolboxposition_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.undo_1_method",
+ "id": "reference/js/blockly.workspace_class.undo_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspace_class.undostack__property",
+ "id": "reference/js/blockly.workspace_class.undostack__property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "WorkspaceAudio",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.workspaceaudio_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.workspaceaudio_class._constructor__1_constructor",
+ "id": "reference/js/blockly.workspaceaudio_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspaceaudio_class.getmuted_1_method",
+ "id": "reference/js/blockly.workspaceaudio_class.getmuted_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspaceaudio_class.load_1_method",
+ "id": "reference/js/blockly.workspaceaudio_class.load_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspaceaudio_class.play_1_method",
+ "id": "reference/js/blockly.workspaceaudio_class.play_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspaceaudio_class.setmuted_1_method",
+ "id": "reference/js/blockly.workspaceaudio_class.setmuted_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "WorkspaceDragger",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.workspacedragger_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.workspacedragger_class._constructor__1_constructor",
+ "id": "reference/js/blockly.workspacedragger_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacedragger_class.startscrollxy__property",
+ "id": "reference/js/blockly.workspacedragger_class.startscrollxy__property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "WorkspaceNavigationPolicy",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.workspacenavigationpolicy_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.workspacenavigationpolicy_class.getfirstchild_1_method",
+ "id": "reference/js/blockly.workspacenavigationpolicy_class.getfirstchild_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacenavigationpolicy_class.getnextsibling_1_method",
+ "id": "reference/js/blockly.workspacenavigationpolicy_class.getnextsibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacenavigationpolicy_class.getparent_1_method",
+ "id": "reference/js/blockly.workspacenavigationpolicy_class.getparent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacenavigationpolicy_class.getprevioussibling_1_method",
+ "id": "reference/js/blockly.workspacenavigationpolicy_class.getprevioussibling_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacenavigationpolicy_class.isapplicable_1_method",
+ "id": "reference/js/blockly.workspacenavigationpolicy_class.isapplicable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacenavigationpolicy_class.isnavigable_1_method",
+ "id": "reference/js/blockly.workspacenavigationpolicy_class.isnavigable_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "WorkspaceSvg",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.workspacesvg_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class._constructor__1_constructor",
+ "id": "reference/js/blockly.workspacesvg_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.addclass_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.addclass_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.addtopblock_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.addtopblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.addtopboundedelement_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.addtopboundedelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.addtopcomment_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.addtopcomment_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.canbefocused_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.centeronblock_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.centeronblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.cleanup_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.cleanup_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.clear_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.clear_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.configurecontextmenu_property",
+ "id": "reference/js/blockly.workspacesvg_class.configurecontextmenu_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.copyoptionsforflyout_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.copyoptionsforflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.createdom_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.createdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.dispose_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getabsolutescale_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getabsolutescale_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getallblocks_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getallblocks_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getaudiomanager_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getaudiomanager_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getblockbyid_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getblockbyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getblocksboundingbox_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getblocksboundingbox_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getbubblecanvas_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getbubblecanvas_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getbuttoncallback_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getbuttoncallback_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getcanvas_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getcanvas_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getcommentbyid_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getcommentbyid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getcomponentmanager_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getcomponentmanager_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getcursor_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getcursor_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getdragtarget_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getdragtarget_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getflyout_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getgrid_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getgrid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getinversescreenctm_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getinversescreenctm_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getmarkermanager_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getmarkermanager_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getmetricsmanager_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getmetricsmanager_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getnavigator_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getnavigator_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getnestedtrees_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getnestedtrees_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getparentsvg_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getparentsvg_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getrenderer_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getrenderer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getrestoredfocusablenode_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getrestoredfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getrootfocusablenode_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getrootfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getrootworkspace_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getrootworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getscale_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getscale_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getsvggroup_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getsvggroup_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.gettheme_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.gettheme_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.gettoolbox_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.gettoolbox_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.gettoolboxcategorycallback_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.gettoolboxcategorycallback_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.gettopblocks_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.gettopblocks_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.gettopboundedelements_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.gettopboundedelements_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.gettopcomments_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.gettopcomments_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.getwidth_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.getwidth_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.hidechaff_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.hidechaff_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.hidecomponents_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.hidecomponents_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.highlightblock_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.highlightblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.isdraggable_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.isdraggable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.isdragging_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.isdragging_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.ismovable_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.ismovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.ismovablehorizontally_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.ismovablehorizontally_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.ismovablevertically_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.ismovablevertically_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.isvisible_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.isvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.keyboardaccessibilitymode_property",
+ "id": "reference/js/blockly.workspacesvg_class.keyboardaccessibilitymode_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.keyboardmoveinprogress_property",
+ "id": "reference/js/blockly.workspacesvg_class.keyboardmoveinprogress_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.lookupfocusablenode_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.lookupfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.markfocused_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.markfocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.movedrag_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.movedrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.newblock_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.newblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.newcomment_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.newcomment_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.ontreeblur_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.ontreeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.ontreefocus_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.ontreefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.recorddragtargets_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.recorddragtargets_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.refreshtheme_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.refreshtheme_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.registerbuttoncallback_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.registerbuttoncallback_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.registertoolboxcategorycallback_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.registertoolboxcategorycallback_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.removebuttoncallback_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.removebuttoncallback_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.removeclass_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.removeclass_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.removetoolboxcategorycallback_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.removetoolboxcategorycallback_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.removetopblock_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.removetopblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.removetopboundedelement_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.removetopboundedelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.removetopcomment_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.removetopcomment_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.render_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.render_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.rendered_property",
+ "id": "reference/js/blockly.workspacesvg_class.rendered_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.resize_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.resize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.scale_property",
+ "id": "reference/js/blockly.workspacesvg_class.scale_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.scroll_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.scroll_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.scrollbar_property",
+ "id": "reference/js/blockly.workspacesvg_class.scrollbar_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.scrollcenter_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.scrollcenter_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.scrollx_property",
+ "id": "reference/js/blockly.workspacesvg_class.scrollx_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.scrolly_property",
+ "id": "reference/js/blockly.workspacesvg_class.scrolly_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.setisreadonly_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.setisreadonly_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.setnavigator_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.setnavigator_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.setresizehandlerwrapper_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.setresizehandlerwrapper_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.setresizesenabled_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.setresizesenabled_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.setscale_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.setscale_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.settheme_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.settheme_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.setvisible_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.setvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.startdrag_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.startdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.startscrollx_property",
+ "id": "reference/js/blockly.workspacesvg_class.startscrollx_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.startscrolly_property",
+ "id": "reference/js/blockly.workspacesvg_class.startscrolly_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.svgbackground__property",
+ "id": "reference/js/blockly.workspacesvg_class.svgbackground__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.svgblockcanvas__property",
+ "id": "reference/js/blockly.workspacesvg_class.svgblockcanvas__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.svgbubblecanvas__property",
+ "id": "reference/js/blockly.workspacesvg_class.svgbubblecanvas__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.svggroup__property",
+ "id": "reference/js/blockly.workspacesvg_class.svggroup__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.thememanager__property",
+ "id": "reference/js/blockly.workspacesvg_class.thememanager__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.translate_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.translate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.trashcan_property",
+ "id": "reference/js/blockly.workspacesvg_class.trashcan_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.updateinversescreenctm_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.updateinversescreenctm_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.updatetoolbox_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.updatetoolbox_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.zoom_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.zoom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.zoomcenter_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.zoomcenter_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.zoomcontrols__property",
+ "id": "reference/js/blockly.workspacesvg_class.zoomcontrols__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.workspacesvg_class.zoomtofit_1_method",
+ "id": "reference/js/blockly.workspacesvg_class.zoomtofit_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "ZoomControls",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.zoomcontrols_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.zoomcontrols_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zoomcontrols_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zoomcontrols_class.createdom_1_method",
+ "id": "reference/js/blockly.zoomcontrols_class.createdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zoomcontrols_class.dispose_1_method",
+ "id": "reference/js/blockly.zoomcontrols_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zoomcontrols_class.getboundingrectangle_1_method",
+ "id": "reference/js/blockly.zoomcontrols_class.getboundingrectangle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zoomcontrols_class.id_property",
+ "id": "reference/js/blockly.zoomcontrols_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zoomcontrols_class.init_1_method",
+ "id": "reference/js/blockly.zoomcontrols_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zoomcontrols_class.position_1_method",
+ "id": "reference/js/blockly.zoomcontrols_class.position_1_method"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ ]
+ },
+ {
+ "type": "category",
+ "label": "Abstract Classes",
+ "collapsible": true,
+ "className": "hide-level-3",
+ "items": [
+ {
+ "type": "category",
+ "label": "Field",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.field_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.field_class._constructor__1_constructor",
+ "id": "reference/js/blockly.field_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.applycolour_1_method",
+ "id": "reference/js/blockly.field_class.applycolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.bindevents__1_method",
+ "id": "reference/js/blockly.field_class.bindevents__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.borderrect__property",
+ "id": "reference/js/blockly.field_class.borderrect__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.canbefocused_1_method",
+ "id": "reference/js/blockly.field_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.clicktarget__property",
+ "id": "reference/js/blockly.field_class.clicktarget__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.configure__1_method",
+ "id": "reference/js/blockly.field_class.configure__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.constants__property",
+ "id": "reference/js/blockly.field_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.createborderrect__1_method",
+ "id": "reference/js/blockly.field_class.createborderrect__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.createtextelement__1_method",
+ "id": "reference/js/blockly.field_class.createtextelement__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.default_value_property",
+ "id": "reference/js/blockly.field_class.default_value_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.dispose_1_method",
+ "id": "reference/js/blockly.field_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.doclassvalidation__1_method",
+ "id": "reference/js/blockly.field_class.doclassvalidation__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.doclassvalidation__2_method",
+ "id": "reference/js/blockly.field_class.doclassvalidation__2_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.dovalueinvalid__1_method",
+ "id": "reference/js/blockly.field_class.dovalueinvalid__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.dovalueupdate__1_method",
+ "id": "reference/js/blockly.field_class.dovalueupdate__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.editable_property",
+ "id": "reference/js/blockly.field_class.editable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.enabled__property",
+ "id": "reference/js/blockly.field_class.enabled__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.fieldgroup__property",
+ "id": "reference/js/blockly.field_class.fieldgroup__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.forcererender_1_method",
+ "id": "reference/js/blockly.field_class.forcererender_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.fromjson_1_method",
+ "id": "reference/js/blockly.field_class.fromjson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.fromxml_1_method",
+ "id": "reference/js/blockly.field_class.fromxml_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getabsolutexy__1_method",
+ "id": "reference/js/blockly.field_class.getabsolutexy__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getborderrect_1_method",
+ "id": "reference/js/blockly.field_class.getborderrect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getclicktarget__1_method",
+ "id": "reference/js/blockly.field_class.getclicktarget__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getconstants_1_method",
+ "id": "reference/js/blockly.field_class.getconstants_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getdisplaytext__1_method",
+ "id": "reference/js/blockly.field_class.getdisplaytext__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getfliprtl_1_method",
+ "id": "reference/js/blockly.field_class.getfliprtl_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.field_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.field_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getsize_1_method",
+ "id": "reference/js/blockly.field_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getsourceblock_1_method",
+ "id": "reference/js/blockly.field_class.getsourceblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getsvgroot_1_method",
+ "id": "reference/js/blockly.field_class.getsvgroot_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.gettext__1_method",
+ "id": "reference/js/blockly.field_class.gettext__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.gettext_1_method",
+ "id": "reference/js/blockly.field_class.gettext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.gettextcontent_1_method",
+ "id": "reference/js/blockly.field_class.gettextcontent_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.gettextelement_1_method",
+ "id": "reference/js/blockly.field_class.gettextelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.gettooltip_1_method",
+ "id": "reference/js/blockly.field_class.gettooltip_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getvalidator_1_method",
+ "id": "reference/js/blockly.field_class.getvalidator_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.getvalue_1_method",
+ "id": "reference/js/blockly.field_class.getvalue_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.initmodel_1_method",
+ "id": "reference/js/blockly.field_class.initmodel_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.initview_1_method",
+ "id": "reference/js/blockly.field_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.isclickable_1_method",
+ "id": "reference/js/blockly.field_class.isclickable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.isclickableinflyout_1_method",
+ "id": "reference/js/blockly.field_class.isclickableinflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.iscurrentlyeditable_1_method",
+ "id": "reference/js/blockly.field_class.iscurrentlyeditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.isdirty__property",
+ "id": "reference/js/blockly.field_class.isdirty__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.isenabled_1_method",
+ "id": "reference/js/blockly.field_class.isenabled_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.isserializable_1_method",
+ "id": "reference/js/blockly.field_class.isserializable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.isvisible_1_method",
+ "id": "reference/js/blockly.field_class.isvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.loadlegacystate_1_method",
+ "id": "reference/js/blockly.field_class.loadlegacystate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.loadstate_1_method",
+ "id": "reference/js/blockly.field_class.loadstate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.maxdisplaylength_property",
+ "id": "reference/js/blockly.field_class.maxdisplaylength_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.name_property",
+ "id": "reference/js/blockly.field_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.nbsp_property",
+ "id": "reference/js/blockly.field_class.nbsp_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.onlocationchange_1_method",
+ "id": "reference/js/blockly.field_class.onlocationchange_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.onmousedown__1_method",
+ "id": "reference/js/blockly.field_class.onmousedown__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.field_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.field_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.onshortcut_1_method",
+ "id": "reference/js/blockly.field_class.onshortcut_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.positionborderrect__1_method",
+ "id": "reference/js/blockly.field_class.positionborderrect__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.positiontextelement__1_method",
+ "id": "reference/js/blockly.field_class.positiontextelement__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.referencesvariables_1_method",
+ "id": "reference/js/blockly.field_class.referencesvariables_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.refreshvariablename_1_method",
+ "id": "reference/js/blockly.field_class.refreshvariablename_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.render__1_method",
+ "id": "reference/js/blockly.field_class.render__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.repositionforwindowresize_1_method",
+ "id": "reference/js/blockly.field_class.repositionforwindowresize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.savelegacystate_1_method",
+ "id": "reference/js/blockly.field_class.savelegacystate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.savestate_1_method",
+ "id": "reference/js/blockly.field_class.savestate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.serializable_property",
+ "id": "reference/js/blockly.field_class.serializable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.setenabled_1_method",
+ "id": "reference/js/blockly.field_class.setenabled_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.setsourceblock_1_method",
+ "id": "reference/js/blockly.field_class.setsourceblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.settooltip_1_method",
+ "id": "reference/js/blockly.field_class.settooltip_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.setvalidator_1_method",
+ "id": "reference/js/blockly.field_class.setvalidator_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.setvalue_1_method",
+ "id": "reference/js/blockly.field_class.setvalue_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.showeditor__1_method",
+ "id": "reference/js/blockly.field_class.showeditor__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.size__property",
+ "id": "reference/js/blockly.field_class.size__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.skip_setup_property",
+ "id": "reference/js/blockly.field_class.skip_setup_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.sourceblock__property",
+ "id": "reference/js/blockly.field_class.sourceblock__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.textcontent__property",
+ "id": "reference/js/blockly.field_class.textcontent__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.textelement__property",
+ "id": "reference/js/blockly.field_class.textelement__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.toxml_1_method",
+ "id": "reference/js/blockly.field_class.toxml_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.updateeditable_1_method",
+ "id": "reference/js/blockly.field_class.updateeditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.updatesize__1_method",
+ "id": "reference/js/blockly.field_class.updatesize__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.validator__property",
+ "id": "reference/js/blockly.field_class.validator__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.value__property",
+ "id": "reference/js/blockly.field_class.value__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.field_class.visible__property",
+ "id": "reference/js/blockly.field_class.visible__property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ {
+ "type": "category",
+ "label": "Flyout",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.flyout_class"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class._constructor__1_constructor",
+ "id": "reference/js/blockly.flyout_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.autoclose_property",
+ "id": "reference/js/blockly.flyout_class.autoclose_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.autohide_1_method",
+ "id": "reference/js/blockly.flyout_class.autohide_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.canbefocused_1_method",
+ "id": "reference/js/blockly.flyout_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.contents_property",
+ "id": "reference/js/blockly.flyout_class.contents_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.corner_radius_property",
+ "id": "reference/js/blockly.flyout_class.corner_radius_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.createdom_1_method",
+ "id": "reference/js/blockly.flyout_class.createdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.dispose_1_method",
+ "id": "reference/js/blockly.flyout_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.draganglerange__property",
+ "id": "reference/js/blockly.flyout_class.draganglerange__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.gap_x_property",
+ "id": "reference/js/blockly.flyout_class.gap_x_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.gap_y_property",
+ "id": "reference/js/blockly.flyout_class.gap_y_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getcontents_1_method",
+ "id": "reference/js/blockly.flyout_class.getcontents_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getflyoutscale_1_method",
+ "id": "reference/js/blockly.flyout_class.getflyoutscale_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.flyout_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.flyout_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getheight_1_method",
+ "id": "reference/js/blockly.flyout_class.getheight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getinflaterfortype_1_method",
+ "id": "reference/js/blockly.flyout_class.getinflaterfortype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getnestedtrees_1_method",
+ "id": "reference/js/blockly.flyout_class.getnestedtrees_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getrestoredfocusablenode_1_method",
+ "id": "reference/js/blockly.flyout_class.getrestoredfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getrootfocusablenode_1_method",
+ "id": "reference/js/blockly.flyout_class.getrootfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.gettargetworkspace_1_method",
+ "id": "reference/js/blockly.flyout_class.gettargetworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getwidth_1_method",
+ "id": "reference/js/blockly.flyout_class.getwidth_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getworkspace_1_method",
+ "id": "reference/js/blockly.flyout_class.getworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.getx_1_method",
+ "id": "reference/js/blockly.flyout_class.getx_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.gety_1_method",
+ "id": "reference/js/blockly.flyout_class.gety_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.height__property",
+ "id": "reference/js/blockly.flyout_class.height__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.hide_1_method",
+ "id": "reference/js/blockly.flyout_class.hide_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.inflaters_property",
+ "id": "reference/js/blockly.flyout_class.inflaters_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.init_1_method",
+ "id": "reference/js/blockly.flyout_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.isdragtowardworkspace_1_method",
+ "id": "reference/js/blockly.flyout_class.isdragtowardworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.isvisible_1_method",
+ "id": "reference/js/blockly.flyout_class.isvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.layout__1_method",
+ "id": "reference/js/blockly.flyout_class.layout__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.lookupfocusablenode_1_method",
+ "id": "reference/js/blockly.flyout_class.lookupfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.margin_property",
+ "id": "reference/js/blockly.flyout_class.margin_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.normalizeseparators_1_method",
+ "id": "reference/js/blockly.flyout_class.normalizeseparators_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.flyout_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.flyout_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.ontreeblur_1_method",
+ "id": "reference/js/blockly.flyout_class.ontreeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.ontreefocus_1_method",
+ "id": "reference/js/blockly.flyout_class.ontreefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.position_1_method",
+ "id": "reference/js/blockly.flyout_class.position_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.positionat__1_method",
+ "id": "reference/js/blockly.flyout_class.positionat__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.reflow_1_method",
+ "id": "reference/js/blockly.flyout_class.reflow_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.reflowinternal__1_method",
+ "id": "reference/js/blockly.flyout_class.reflowinternal__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.rtl_property",
+ "id": "reference/js/blockly.flyout_class.rtl_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.scrollbar_margin_property",
+ "id": "reference/js/blockly.flyout_class.scrollbar_margin_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.scrolltostart_1_method",
+ "id": "reference/js/blockly.flyout_class.scrolltostart_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.serializeblock_1_method",
+ "id": "reference/js/blockly.flyout_class.serializeblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.setautoclose_1_method",
+ "id": "reference/js/blockly.flyout_class.setautoclose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.setcontainervisible_1_method",
+ "id": "reference/js/blockly.flyout_class.setcontainervisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.setcontents_1_method",
+ "id": "reference/js/blockly.flyout_class.setcontents_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.setmetrics__1_method",
+ "id": "reference/js/blockly.flyout_class.setmetrics__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.setvisible_1_method",
+ "id": "reference/js/blockly.flyout_class.setvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.show_1_method",
+ "id": "reference/js/blockly.flyout_class.show_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.svgbackground__property",
+ "id": "reference/js/blockly.flyout_class.svgbackground__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.svggroup__property",
+ "id": "reference/js/blockly.flyout_class.svggroup__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.tabwidth__property",
+ "id": "reference/js/blockly.flyout_class.tabwidth__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.toolboxposition__property",
+ "id": "reference/js/blockly.flyout_class.toolboxposition__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.wheel__1_method",
+ "id": "reference/js/blockly.flyout_class.wheel__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.width__property",
+ "id": "reference/js/blockly.flyout_class.width__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.flyout_class.workspace__property",
+ "id": "reference/js/blockly.flyout_class.workspace__property"
+ },
+ ],
+ "className": "hide-from-sidebar"
+ },
+ ]
+ },
+ {
+ "type": "category",
+ "label": "Enumerations",
+ "collapsible": true,
+ "className": "hide-level-3",
+ "items": [
+ {
+ "type": "doc",
+ "label": "ConnectionType",
+ "id": "reference/js/blockly.connectiontype_enum"
+ },
+ ]
+ },
+ {
+ "type": "category",
+ "label": "Functions",
+ "collapsible": true,
+ "className": "hide-level-3",
+ "items": [
+ {
+ "type": "doc",
+ "label": "getFocusManager()",
+ "id": "reference/js/blockly.getfocusmanager_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "hasBubble(obj)",
+ "id": "reference/js/blockly.hasbubble_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "hideChaff(opt_onlyClosePopups)",
+ "id": "reference/js/blockly.hidechaff_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "inject(container, opt_options)",
+ "id": "reference/js/blockly.inject_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "isCopyable(obj)",
+ "id": "reference/js/blockly.iscopyable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "isDeletable(obj)",
+ "id": "reference/js/blockly.isdeletable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "isDraggable(obj)",
+ "id": "reference/js/blockly.isdraggable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "isIcon(obj)",
+ "id": "reference/js/blockly.isicon_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "isPaster(obj)",
+ "id": "reference/js/blockly.ispaster_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "isRenderedElement(obj)",
+ "id": "reference/js/blockly.isrenderedelement_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "isSelectable(obj)",
+ "id": "reference/js/blockly.isselectable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "isSerializable(obj)",
+ "id": "reference/js/blockly.isserializable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "isVariableBackedParameterModel(param)",
+ "id": "reference/js/blockly.isvariablebackedparametermodel_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "navigateBlock(current, delta)",
+ "id": "reference/js/blockly.navigateblock_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "navigateStacks(current, delta)",
+ "id": "reference/js/blockly.navigatestacks_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "setLocale(locale)",
+ "id": "reference/js/blockly.setlocale_1_function"
+ },
+ ]
+ },
+ {
+ "type": "category",
+ "label": "Interfaces",
+ "collapsible": true,
+ "className": "hide-level-3",
+ "items": [
+ {
+ "type": "category",
+ "label": "BlocklyOptions",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.blocklyoptions_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.collapse_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.collapse_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.comments_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.comments_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.css_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.css_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.disable_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.disable_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.grid_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.grid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.horizontallayout_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.horizontallayout_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.maxblocks_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.maxblocks_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.maxinstances_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.maxinstances_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.maxtrashcancontents_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.maxtrashcancontents_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.media_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.media_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.modalinputs_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.modalinputs_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.move_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.move_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.onebasedindex_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.onebasedindex_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.parentworkspace_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.parentworkspace_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.plugins_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.plugins_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.readonly_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.readonly_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.renderer_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.renderer_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.rendereroverrides_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.rendereroverrides_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.rtl_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.rtl_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.scrollbars_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.scrollbars_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.sounds_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.sounds_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.theme_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.theme_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.toolbox_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.toolbox_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.toolboxposition_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.toolboxposition_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.trashcan_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.trashcan_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blocklyoptions_interface.zoom_propertysignature",
+ "id": "reference/js/blockly.blocklyoptions_interface.zoom_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldCheckboxConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldcheckboxconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckboxconfig_interface.checkcharacter_propertysignature",
+ "id": "reference/js/blockly.fieldcheckboxconfig_interface.checkcharacter_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldCheckboxFromJsonConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldcheckboxfromjsonconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldcheckboxfromjsonconfig_interface.checked_propertysignature",
+ "id": "reference/js/blockly.fieldcheckboxfromjsonconfig_interface.checked_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldconfig_interface.tooltip_propertysignature",
+ "id": "reference/js/blockly.fieldconfig_interface.tooltip_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldDropdownFromJsonConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fielddropdownfromjsonconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fielddropdownfromjsonconfig_interface.options_propertysignature",
+ "id": "reference/js/blockly.fielddropdownfromjsonconfig_interface.options_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldImageConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldimageconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldimageconfig_interface.alt_propertysignature",
+ "id": "reference/js/blockly.fieldimageconfig_interface.alt_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimageconfig_interface.fliprtl_propertysignature",
+ "id": "reference/js/blockly.fieldimageconfig_interface.fliprtl_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldImageFromJsonConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldimagefromjsonconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldimagefromjsonconfig_interface.height_propertysignature",
+ "id": "reference/js/blockly.fieldimagefromjsonconfig_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimagefromjsonconfig_interface.src_propertysignature",
+ "id": "reference/js/blockly.fieldimagefromjsonconfig_interface.src_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldimagefromjsonconfig_interface.width_propertysignature",
+ "id": "reference/js/blockly.fieldimagefromjsonconfig_interface.width_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldLabelConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldlabelconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabelconfig_interface.class_propertysignature",
+ "id": "reference/js/blockly.fieldlabelconfig_interface.class_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldLabelFromJsonConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldlabelfromjsonconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldlabelfromjsonconfig_interface.text_propertysignature",
+ "id": "reference/js/blockly.fieldlabelfromjsonconfig_interface.text_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldNumberConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldnumberconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumberconfig_interface.max_propertysignature",
+ "id": "reference/js/blockly.fieldnumberconfig_interface.max_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumberconfig_interface.min_propertysignature",
+ "id": "reference/js/blockly.fieldnumberconfig_interface.min_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumberconfig_interface.precision_propertysignature",
+ "id": "reference/js/blockly.fieldnumberconfig_interface.precision_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldNumberFromJsonConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldnumberfromjsonconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldnumberfromjsonconfig_interface.value_propertysignature",
+ "id": "reference/js/blockly.fieldnumberfromjsonconfig_interface.value_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldTextInputFromJsonConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldtextinputfromjsonconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldtextinputfromjsonconfig_interface.text_propertysignature",
+ "id": "reference/js/blockly.fieldtextinputfromjsonconfig_interface.text_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldVariableConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldvariableconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariableconfig_interface.defaulttype_propertysignature",
+ "id": "reference/js/blockly.fieldvariableconfig_interface.defaulttype_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariableconfig_interface.variabletypes_propertysignature",
+ "id": "reference/js/blockly.fieldvariableconfig_interface.variabletypes_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "FieldVariableFromJsonConfig",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldvariablefromjsonconfig_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldvariablefromjsonconfig_interface.variable_propertysignature",
+ "id": "reference/js/blockly.fieldvariablefromjsonconfig_interface.variable_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IAutoHideable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iautohideable_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iautohideable_interface.autohide_1_methodsignature",
+ "id": "reference/js/blockly.iautohideable_interface.autohide_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IBoundedElement",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iboundedelement_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iboundedelement_interface.getboundingrectangle_1_methodsignature",
+ "id": "reference/js/blockly.iboundedelement_interface.getboundingrectangle_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iboundedelement_interface.moveby_1_methodsignature",
+ "id": "reference/js/blockly.iboundedelement_interface.moveby_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IBubble",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ibubble_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ibubble_interface.dispose_1_methodsignature",
+ "id": "reference/js/blockly.ibubble_interface.dispose_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ibubble_interface.getrelativetosurfacexy_1_methodsignature",
+ "id": "reference/js/blockly.ibubble_interface.getrelativetosurfacexy_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ibubble_interface.getsvgroot_1_methodsignature",
+ "id": "reference/js/blockly.ibubble_interface.getsvgroot_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ibubble_interface.moveduringdrag_1_methodsignature",
+ "id": "reference/js/blockly.ibubble_interface.moveduringdrag_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ibubble_interface.moveto_1_methodsignature",
+ "id": "reference/js/blockly.ibubble_interface.moveto_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ibubble_interface.setdeletestyle_1_methodsignature",
+ "id": "reference/js/blockly.ibubble_interface.setdeletestyle_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ibubble_interface.setdragging_1_methodsignature",
+ "id": "reference/js/blockly.ibubble_interface.setdragging_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ICollapsibleToolboxItem",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.icollapsibletoolboxitem_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.icollapsibletoolboxitem_interface.getchildtoolboxitems_1_methodsignature",
+ "id": "reference/js/blockly.icollapsibletoolboxitem_interface.getchildtoolboxitems_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icollapsibletoolboxitem_interface.isexpanded_1_methodsignature",
+ "id": "reference/js/blockly.icollapsibletoolboxitem_interface.isexpanded_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icollapsibletoolboxitem_interface.toggleexpanded_1_methodsignature",
+ "id": "reference/js/blockly.icollapsibletoolboxitem_interface.toggleexpanded_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IComponent",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.icomponent_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.icomponent_interface.id_propertysignature",
+ "id": "reference/js/blockly.icomponent_interface.id_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IConnectionChecker",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iconnectionchecker_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionchecker_interface.canconnect_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionchecker_interface.canconnect_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionchecker_interface.canconnectwithreason_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionchecker_interface.canconnectwithreason_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionchecker_interface.dodragchecks_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionchecker_interface.dodragchecks_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionchecker_interface.dosafetychecks_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionchecker_interface.dosafetychecks_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionchecker_interface.dotypechecks_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionchecker_interface.dotypechecks_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionchecker_interface.geterrormessage_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionchecker_interface.geterrormessage_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IConnectionPreviewer",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iconnectionpreviewer_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionpreviewer_interface.dispose_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionpreviewer_interface.dispose_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionpreviewer_interface.hidepreview_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionpreviewer_interface.hidepreview_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionpreviewer_interface.previewconnection_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionpreviewer_interface.previewconnection_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iconnectionpreviewer_interface.previewreplacement_1_methodsignature",
+ "id": "reference/js/blockly.iconnectionpreviewer_interface.previewreplacement_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IContextMenu",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.icontextmenu_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.icontextmenu_interface.showcontextmenu_1_methodsignature",
+ "id": "reference/js/blockly.icontextmenu_interface.showcontextmenu_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ICopyable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.icopyable_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.icopyable_interface.iscopyable_1_methodsignature",
+ "id": "reference/js/blockly.icopyable_interface.iscopyable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icopyable_interface.tocopydata_1_methodsignature",
+ "id": "reference/js/blockly.icopyable_interface.tocopydata_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IDeletable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ideletable_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ideletable_interface.dispose_1_methodsignature",
+ "id": "reference/js/blockly.ideletable_interface.dispose_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ideletable_interface.isdeletable_1_methodsignature",
+ "id": "reference/js/blockly.ideletable_interface.isdeletable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ideletable_interface.setdeletestyle_1_methodsignature",
+ "id": "reference/js/blockly.ideletable_interface.setdeletestyle_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IDeleteArea",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ideletearea_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ideletearea_interface.woulddelete_1_methodsignature",
+ "id": "reference/js/blockly.ideletearea_interface.woulddelete_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IDraggable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.idraggable_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.idraggable_interface.getrelativetosurfacexy_1_methodsignature",
+ "id": "reference/js/blockly.idraggable_interface.getrelativetosurfacexy_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IDragger",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.idragger_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.idragger_interface.ondrag_1_methodsignature",
+ "id": "reference/js/blockly.idragger_interface.ondrag_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragger_interface.ondragend_1_methodsignature",
+ "id": "reference/js/blockly.idragger_interface.ondragend_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragger_interface.ondragstart_1_methodsignature",
+ "id": "reference/js/blockly.idragger_interface.ondragstart_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IDragStrategy",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.idragstrategy_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.idragstrategy_interface.drag_1_methodsignature",
+ "id": "reference/js/blockly.idragstrategy_interface.drag_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragstrategy_interface.enddrag_1_methodsignature",
+ "id": "reference/js/blockly.idragstrategy_interface.enddrag_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragstrategy_interface.ismovable_1_methodsignature",
+ "id": "reference/js/blockly.idragstrategy_interface.ismovable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragstrategy_interface.revertdrag_1_methodsignature",
+ "id": "reference/js/blockly.idragstrategy_interface.revertdrag_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragstrategy_interface.startdrag_1_methodsignature",
+ "id": "reference/js/blockly.idragstrategy_interface.startdrag_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IDragTarget",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.idragtarget_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.idragtarget_interface.getclientrect_1_methodsignature",
+ "id": "reference/js/blockly.idragtarget_interface.getclientrect_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragtarget_interface.ondragenter_1_methodsignature",
+ "id": "reference/js/blockly.idragtarget_interface.ondragenter_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragtarget_interface.ondragexit_1_methodsignature",
+ "id": "reference/js/blockly.idragtarget_interface.ondragexit_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragtarget_interface.ondragover_1_methodsignature",
+ "id": "reference/js/blockly.idragtarget_interface.ondragover_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragtarget_interface.ondrop_1_methodsignature",
+ "id": "reference/js/blockly.idragtarget_interface.ondrop_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.idragtarget_interface.shouldpreventmove_1_methodsignature",
+ "id": "reference/js/blockly.idragtarget_interface.shouldpreventmove_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IFlyout",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iflyout_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.autoclose_propertysignature",
+ "id": "reference/js/blockly.iflyout_interface.autoclose_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.corner_radius_propertysignature",
+ "id": "reference/js/blockly.iflyout_interface.corner_radius_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.createblock_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.createblock_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.createdom_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.createdom_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.dispose_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.dispose_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.getcontents_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.getcontents_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.getheight_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.getheight_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.getwidth_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.getwidth_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.getworkspace_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.getworkspace_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.getx_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.getx_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.gety_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.gety_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.hide_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.hide_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.horizontallayout_propertysignature",
+ "id": "reference/js/blockly.iflyout_interface.horizontallayout_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.init_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.init_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.isblockcreatable_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.isblockcreatable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.isdragtowardworkspace_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.isdragtowardworkspace_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.isscrollable_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.isscrollable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.isvisible_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.isvisible_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.margin_propertysignature",
+ "id": "reference/js/blockly.iflyout_interface.margin_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.position_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.position_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.reflow_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.reflow_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.rtl_propertysignature",
+ "id": "reference/js/blockly.iflyout_interface.rtl_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.scrolltostart_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.scrolltostart_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.setcontainervisible_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.setcontainervisible_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.setvisible_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.setvisible_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.show_1_methodsignature",
+ "id": "reference/js/blockly.iflyout_interface.show_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyout_interface.targetworkspace_propertysignature",
+ "id": "reference/js/blockly.iflyout_interface.targetworkspace_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IFlyoutInflater",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iflyoutinflater_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iflyoutinflater_interface.disposeitem_1_methodsignature",
+ "id": "reference/js/blockly.iflyoutinflater_interface.disposeitem_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyoutinflater_interface.gapforitem_1_methodsignature",
+ "id": "reference/js/blockly.iflyoutinflater_interface.gapforitem_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyoutinflater_interface.gettype_1_methodsignature",
+ "id": "reference/js/blockly.iflyoutinflater_interface.gettype_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iflyoutinflater_interface.load_1_methodsignature",
+ "id": "reference/js/blockly.iflyoutinflater_interface.load_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IFocusableNode",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ifocusablenode_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ifocusablenode_interface.canbefocused_1_methodsignature",
+ "id": "reference/js/blockly.ifocusablenode_interface.canbefocused_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ifocusablenode_interface.getfocusableelement_1_methodsignature",
+ "id": "reference/js/blockly.ifocusablenode_interface.getfocusableelement_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ifocusablenode_interface.getfocusabletree_1_methodsignature",
+ "id": "reference/js/blockly.ifocusablenode_interface.getfocusabletree_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ifocusablenode_interface.onnodeblur_1_methodsignature",
+ "id": "reference/js/blockly.ifocusablenode_interface.onnodeblur_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ifocusablenode_interface.onnodefocus_1_methodsignature",
+ "id": "reference/js/blockly.ifocusablenode_interface.onnodefocus_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IFocusableTree",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ifocusabletree_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ifocusabletree_interface.getnestedtrees_1_methodsignature",
+ "id": "reference/js/blockly.ifocusabletree_interface.getnestedtrees_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ifocusabletree_interface.getrestoredfocusablenode_1_methodsignature",
+ "id": "reference/js/blockly.ifocusabletree_interface.getrestoredfocusablenode_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ifocusabletree_interface.getrootfocusablenode_1_methodsignature",
+ "id": "reference/js/blockly.ifocusabletree_interface.getrootfocusablenode_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ifocusabletree_interface.lookupfocusablenode_1_methodsignature",
+ "id": "reference/js/blockly.ifocusabletree_interface.lookupfocusablenode_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ifocusabletree_interface.ontreeblur_1_methodsignature",
+ "id": "reference/js/blockly.ifocusabletree_interface.ontreeblur_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ifocusabletree_interface.ontreefocus_1_methodsignature",
+ "id": "reference/js/blockly.ifocusabletree_interface.ontreefocus_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IHasBubble",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ihasbubble_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ihasbubble_interface.bubbleisvisible_1_methodsignature",
+ "id": "reference/js/blockly.ihasbubble_interface.bubbleisvisible_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ihasbubble_interface.getbubble_1_methodsignature",
+ "id": "reference/js/blockly.ihasbubble_interface.getbubble_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ihasbubble_interface.setbubblevisible_1_methodsignature",
+ "id": "reference/js/blockly.ihasbubble_interface.setbubblevisible_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IIcon",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iicon_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.applycolour_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.applycolour_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.dispose_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.dispose_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.getsize_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.getsize_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.gettype_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.gettype_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.getweight_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.getweight_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.hideforinsertionmarker_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.hideforinsertionmarker_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.initview_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.initview_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.isclickableinflyout_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.isclickableinflyout_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.isshownwhencollapsed_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.isshownwhencollapsed_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.onclick_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.onclick_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.onlocationchange_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.onlocationchange_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.setoffsetinblock_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.setoffsetinblock_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.updatecollapsed_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.updatecollapsed_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iicon_interface.updateeditable_1_methodsignature",
+ "id": "reference/js/blockly.iicon_interface.updateeditable_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IKeyboardAccessible",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ikeyboardaccessible_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ikeyboardaccessible_interface.onshortcut_1_methodsignature",
+ "id": "reference/js/blockly.ikeyboardaccessible_interface.onshortcut_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ImageProperties",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.imageproperties_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.imageproperties_interface.alt_propertysignature",
+ "id": "reference/js/blockly.imageproperties_interface.alt_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imageproperties_interface.height_propertysignature",
+ "id": "reference/js/blockly.imageproperties_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imageproperties_interface.src_propertysignature",
+ "id": "reference/js/blockly.imageproperties_interface.src_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imageproperties_interface.width_propertysignature",
+ "id": "reference/js/blockly.imageproperties_interface.width_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IMetricsManager",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.imetricsmanager_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.imetricsmanager_interface.getabsolutemetrics_1_methodsignature",
+ "id": "reference/js/blockly.imetricsmanager_interface.getabsolutemetrics_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imetricsmanager_interface.getcontentmetrics_1_methodsignature",
+ "id": "reference/js/blockly.imetricsmanager_interface.getcontentmetrics_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imetricsmanager_interface.getflyoutmetrics_1_methodsignature",
+ "id": "reference/js/blockly.imetricsmanager_interface.getflyoutmetrics_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imetricsmanager_interface.getmetrics_1_methodsignature",
+ "id": "reference/js/blockly.imetricsmanager_interface.getmetrics_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imetricsmanager_interface.getscrollmetrics_1_methodsignature",
+ "id": "reference/js/blockly.imetricsmanager_interface.getscrollmetrics_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imetricsmanager_interface.getsvgmetrics_1_methodsignature",
+ "id": "reference/js/blockly.imetricsmanager_interface.getsvgmetrics_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imetricsmanager_interface.gettoolboxmetrics_1_methodsignature",
+ "id": "reference/js/blockly.imetricsmanager_interface.gettoolboxmetrics_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imetricsmanager_interface.getuimetrics_1_methodsignature",
+ "id": "reference/js/blockly.imetricsmanager_interface.getuimetrics_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.imetricsmanager_interface.getviewmetrics_1_methodsignature",
+ "id": "reference/js/blockly.imetricsmanager_interface.getviewmetrics_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IMovable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.imovable_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.imovable_interface.ismovable_1_methodsignature",
+ "id": "reference/js/blockly.imovable_interface.ismovable_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "INavigationPolicy",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.inavigationpolicy_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.inavigationpolicy_interface.getfirstchild_1_methodsignature",
+ "id": "reference/js/blockly.inavigationpolicy_interface.getfirstchild_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inavigationpolicy_interface.getnextsibling_1_methodsignature",
+ "id": "reference/js/blockly.inavigationpolicy_interface.getnextsibling_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inavigationpolicy_interface.getparent_1_methodsignature",
+ "id": "reference/js/blockly.inavigationpolicy_interface.getparent_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inavigationpolicy_interface.getprevioussibling_1_methodsignature",
+ "id": "reference/js/blockly.inavigationpolicy_interface.getprevioussibling_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inavigationpolicy_interface.isapplicable_1_methodsignature",
+ "id": "reference/js/blockly.inavigationpolicy_interface.isapplicable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inavigationpolicy_interface.isnavigable_1_methodsignature",
+ "id": "reference/js/blockly.inavigationpolicy_interface.isnavigable_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IPaster",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ipaster_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ipaster_interface.paste_1_methodsignature",
+ "id": "reference/js/blockly.ipaster_interface.paste_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IPositionable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ipositionable_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ipositionable_interface.getboundingrectangle_1_methodsignature",
+ "id": "reference/js/blockly.ipositionable_interface.getboundingrectangle_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ipositionable_interface.position_1_methodsignature",
+ "id": "reference/js/blockly.ipositionable_interface.position_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "doc",
+ "label": "IRegistrable",
+ "id": "reference/js/blockly.iregistrable_interface"
+ },
+ {
+ "type": "category",
+ "label": "IRenderedElement",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.irenderedelement_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.irenderedelement_interface.getsvgroot_1_methodsignature",
+ "id": "reference/js/blockly.irenderedelement_interface.getsvgroot_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ISelectable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iselectable_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iselectable_interface.id_propertysignature",
+ "id": "reference/js/blockly.iselectable_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iselectable_interface.select_1_methodsignature",
+ "id": "reference/js/blockly.iselectable_interface.select_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iselectable_interface.unselect_1_methodsignature",
+ "id": "reference/js/blockly.iselectable_interface.unselect_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iselectable_interface.workspace_propertysignature",
+ "id": "reference/js/blockly.iselectable_interface.workspace_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ISelectableToolboxItem",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iselectabletoolboxitem_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iselectabletoolboxitem_interface.getclicktarget_1_methodsignature",
+ "id": "reference/js/blockly.iselectabletoolboxitem_interface.getclicktarget_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iselectabletoolboxitem_interface.getcontents_1_methodsignature",
+ "id": "reference/js/blockly.iselectabletoolboxitem_interface.getcontents_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iselectabletoolboxitem_interface.getname_1_methodsignature",
+ "id": "reference/js/blockly.iselectabletoolboxitem_interface.getname_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iselectabletoolboxitem_interface.onclick_1_methodsignature",
+ "id": "reference/js/blockly.iselectabletoolboxitem_interface.onclick_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iselectabletoolboxitem_interface.setselected_1_methodsignature",
+ "id": "reference/js/blockly.iselectabletoolboxitem_interface.setselected_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ISerializable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.iserializable_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.iserializable_interface.loadstate_1_methodsignature",
+ "id": "reference/js/blockly.iserializable_interface.loadstate_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.iserializable_interface.savestate_1_methodsignature",
+ "id": "reference/js/blockly.iserializable_interface.savestate_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IStyleable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.istyleable_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.istyleable_interface.addstyle_1_methodsignature",
+ "id": "reference/js/blockly.istyleable_interface.addstyle_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.istyleable_interface.removestyle_1_methodsignature",
+ "id": "reference/js/blockly.istyleable_interface.removestyle_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IToolbox",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.itoolbox_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.clearselection_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.clearselection_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.dispose_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.dispose_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.getflyout_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.getflyout_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.getheight_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.getheight_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.getselecteditem_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.getselecteditem_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.getwidth_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.getwidth_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.getworkspace_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.getworkspace_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.handletoolboxitemresize_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.handletoolboxitemresize_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.init_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.init_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.ishorizontal_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.ishorizontal_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.position_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.position_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.refreshselection_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.refreshselection_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.refreshtheme_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.refreshtheme_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.render_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.render_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.selectitembyposition_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.selectitembyposition_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.setselecteditem_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.setselecteditem_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolbox_interface.setvisible_1_methodsignature",
+ "id": "reference/js/blockly.itoolbox_interface.setvisible_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IToolboxItem",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.itoolboxitem_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.itoolboxitem_interface.dispose_1_methodsignature",
+ "id": "reference/js/blockly.itoolboxitem_interface.dispose_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolboxitem_interface.getclicktarget_1_methodsignature",
+ "id": "reference/js/blockly.itoolboxitem_interface.getclicktarget_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolboxitem_interface.getdiv_1_methodsignature",
+ "id": "reference/js/blockly.itoolboxitem_interface.getdiv_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolboxitem_interface.getid_1_methodsignature",
+ "id": "reference/js/blockly.itoolboxitem_interface.getid_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolboxitem_interface.getparent_1_methodsignature",
+ "id": "reference/js/blockly.itoolboxitem_interface.getparent_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolboxitem_interface.init_1_methodsignature",
+ "id": "reference/js/blockly.itoolboxitem_interface.init_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolboxitem_interface.iscollapsible_1_methodsignature",
+ "id": "reference/js/blockly.itoolboxitem_interface.iscollapsible_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolboxitem_interface.isselectable_1_methodsignature",
+ "id": "reference/js/blockly.itoolboxitem_interface.isselectable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.itoolboxitem_interface.setvisible__1_methodsignature",
+ "id": "reference/js/blockly.itoolboxitem_interface.setvisible__1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IVariableBackedParameterModel",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ivariablebackedparametermodel_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ivariablebackedparametermodel_interface.getvariablemodel_1_methodsignature",
+ "id": "reference/js/blockly.ivariablebackedparametermodel_interface.getvariablemodel_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IVariableMap",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ivariablemap_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.addvariable_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.addvariable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.changevariabletype_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.changevariabletype_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.clear_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.clear_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.createvariable_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.createvariable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.deletevariable_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.deletevariable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.getallvariables_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.getallvariables_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.gettypes_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.gettypes_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.getvariable_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.getvariable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.getvariablebyid_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.getvariablebyid_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.getvariablesoftype_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.getvariablesoftype_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemap_interface.renamevariable_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemap_interface.renamevariable_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IVariableModel",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ivariablemodel_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemodel_interface.getid_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemodel_interface.getid_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemodel_interface.getname_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemodel_interface.getname_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemodel_interface.gettype_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemodel_interface.gettype_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemodel_interface.getworkspace_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemodel_interface.getworkspace_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemodel_interface.save_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemodel_interface.save_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemodel_interface.setname_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemodel_interface.setname_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablemodel_interface.settype_1_methodsignature",
+ "id": "reference/js/blockly.ivariablemodel_interface.settype_1_methodsignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "IVariableState",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.ivariablestate_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.ivariablestate_interface.id_propertysignature",
+ "id": "reference/js/blockly.ivariablestate_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablestate_interface.name_propertysignature",
+ "id": "reference/js/blockly.ivariablestate_interface.name_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.ivariablestate_interface.type_propertysignature",
+ "id": "reference/js/blockly.ivariablestate_interface.type_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ToastOptions",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.toastoptions_interface"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.toastoptions_interface.assertiveness_propertysignature",
+ "id": "reference/js/blockly.toastoptions_interface.assertiveness_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toastoptions_interface.duration_propertysignature",
+ "id": "reference/js/blockly.toastoptions_interface.duration_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toastoptions_interface.id_propertysignature",
+ "id": "reference/js/blockly.toastoptions_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toastoptions_interface.message_propertysignature",
+ "id": "reference/js/blockly.toastoptions_interface.message_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toastoptions_interface.oncepersession_propertysignature",
+ "id": "reference/js/blockly.toastoptions_interface.oncepersession_propertysignature"
+ },
+ ],
+ },
+ ]
+ },
+ {
+ "type": "category",
+ "label": "Namespaces",
+ "collapsible": true,
+ "className": "hide-level-3",
+ "items": [
+ {
+ "type": "category",
+ "label": "Block",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.block_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.block_namespace.commentmodel_interface",
+ "id": "reference/js/blockly.block_namespace.commentmodel_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_namespace.commentmodel_interface.pinned_propertysignature",
+ "id": "reference/js/blockly.block_namespace.commentmodel_interface.pinned_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_namespace.commentmodel_interface.size_propertysignature",
+ "id": "reference/js/blockly.block_namespace.commentmodel_interface.size_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.block_namespace.commentmodel_interface.text_propertysignature",
+ "id": "reference/js/blockly.block_namespace.commentmodel_interface.text_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "doc",
+ "label": "blockAnimations",
+ "id": "reference/js/blockly.blockanimations_namespace"
+ },
+ {
+ "type": "category",
+ "label": "blockRendering",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.blockrendering_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.connection_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.connection_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.externalvalueinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.field_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.field_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.hat_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.hat_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.icon_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.icon_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inlineinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.inlineinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputconnection_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputrow_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.inputrow_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inrowspacer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.inrowspacer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.jaggededge_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.jaggededge_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.measurable_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.measurable_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.nextconnection_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.nextconnection_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outputconnection_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.previousconnection_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.previousconnection_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.roundcorner_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.roundcorner_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.spacerrow_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.squarecorner_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.squarecorner_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.statementinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.statementinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class._constructor__1_constructor",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.baseshape_typealias",
+ "id": "reference/js/blockly.blockrendering_namespace.baseshape_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class.baseline_property",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.baseline_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class.connection_property",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.connection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class.descenderheight_property",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.descenderheight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class.endswithelemspacer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.endswithelemspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class.hasleftsquarecorner_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.hasleftsquarecorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class.hasnextconnection_property",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.hasnextconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class.hasrightsquarecorner_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.hasrightsquarecorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class.measure_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.measure_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.bottomrow_class.startswithelemspacer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.startswithelemspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.connection_class",
+ "id": "reference/js/blockly.blockrendering_namespace.connection_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.connection_class.connectionmodel_property",
+ "id": "reference/js/blockly.blockrendering_namespace.connection_class.connectionmodel_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.connection_class.highlighted_property",
+ "id": "reference/js/blockly.blockrendering_namespace.connection_class.highlighted_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.connection_class.isdynamicshape_property",
+ "id": "reference/js/blockly.blockrendering_namespace.connection_class.isdynamicshape_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.connection_class.shape_property",
+ "id": "reference/js/blockly.blockrendering_namespace.connection_class.shape_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.add_start_hats_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.add_start_hats_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.between_statement_padding_y_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.between_statement_padding_y_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.blockstyles_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.blockstyles_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.bottom_row_after_statement_min_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.bottom_row_after_statement_min_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.bottom_row_min_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.bottom_row_min_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.corner_radius_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.corner_radius_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.createblockstyle__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.createblockstyle__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.createdom_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.createdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_block_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_block_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_colour_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_colour_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_stack_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_stack_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_stroke_width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_stroke_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_ws_width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_ws_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.debugfilterid_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.debugfilterid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.disabledpatternid_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.disabledpatternid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.dispose_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.dummy_input_min_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.dummy_input_min_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.dummy_input_shadow_min_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.dummy_input_shadow_min_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.embossfilterid_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.embossfilterid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.empty_block_spacer_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.empty_block_spacer_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.empty_inline_input_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.empty_inline_input_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.empty_inline_input_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.empty_inline_input_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.empty_statement_input_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.empty_statement_input_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.external_value_input_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.external_value_input_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_colour_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_colour_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_radius_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_radius_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_x_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_x_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_y_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_y_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_checkbox_x_offset_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_checkbox_x_offset_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_colour_default_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_colour_default_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_colour_default_width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_colour_default_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_colour_full_block_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_colour_full_block_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_border_rect_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_border_rect_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_coloured_div_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_coloured_div_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_no_border_rect_shadow_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_no_border_rect_shadow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_datauri_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_datauri_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_size_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_size_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_baseline_center_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_baseline_center_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_baseline_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_baseline_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_fontfamily_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_fontfamily_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_fontsize_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_fontsize_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_fontweight_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_fontweight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.field_textinput_box_shadow_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_textinput_box_shadow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.full_block_fields_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.full_block_fields_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.generatesecondarycolour__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.generatesecondarycolour__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.generatetertiarycolour__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.generatetertiarycolour__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.getblockstyle_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.getblockstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.getblockstyleforcolour_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.getblockstyleforcolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.getcss__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.getcss__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.init_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.injectcss__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.injectcss__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.insertion_marker_colour_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.insertion_marker_colour_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.insertion_marker_opacity_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.insertion_marker_opacity_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.inside_corners_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.inside_corners_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.large_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.large_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.makeinsidecorners_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makeinsidecorners_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.makejaggedteeth_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makejaggedteeth_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.makenotch_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makenotch_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.makeoutsidecorners_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makeoutsidecorners_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.makepuzzletab_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makepuzzletab_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.makestarthat_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makestarthat_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.marker_colour_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.marker_colour_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.medium_large_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.medium_large_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.medium_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.medium_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.min_block_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.min_block_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.min_block_width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.min_block_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.no_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.no_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.notch_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.notch_offset_left_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_offset_left_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.notch_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.notch_width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.outside_corners_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.outside_corners_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.puzzle_tab_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.puzzle_tab_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.randomidentifier_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.randomidentifier_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.setcomponentconstants__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.setcomponentconstants__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.setdynamicproperties__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.setdynamicproperties__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.setfontconstants__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.setfontconstants__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.settheme_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.settheme_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.shapefor_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.shapefor_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.shapes_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.shapes_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.small_padding_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.small_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.spacer_default_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.spacer_default_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.start_hat_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.start_hat_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.start_hat_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.start_hat_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.start_hat_width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.start_hat_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.start_point_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.start_point_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.statement_bottom_spacer_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.statement_bottom_spacer_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.statement_input_notch_offset_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.statement_input_notch_offset_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.statement_input_padding_left_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.statement_input_padding_left_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.tab_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.tab_offset_from_top_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_offset_from_top_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.tab_vertical_overlap_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_vertical_overlap_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.tab_width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.tall_input_field_offset_y_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tall_input_field_offset_y_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.top_row_min_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.top_row_min_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.top_row_precedes_statement_min_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.top_row_precedes_statement_min_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.validatedblockstyle__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.validatedblockstyle__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.constantprovider_class.ws_cursor_height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.ws_cursor_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.block__property",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.block__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.constants__property",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.draw_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.draw_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawbottom__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawbottom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawconnectionhighlightpath_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawconnectionhighlightpath_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawinlineinput__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawinlineinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawinternals__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawinternals__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawjaggededge__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawjaggededge__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawleft__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawleft__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawoutline__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawoutline__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawrightsiderow__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawrightsiderow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawstatementinput__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawstatementinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawtop__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawtop__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.drawvalueinput__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawvalueinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.info__property",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.info__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.inlinepath__property",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.inlinepath__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.layoutfield__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.layoutfield__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.outlinepath__property",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.outlinepath__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.positionexternalvalueconnection__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionexternalvalueconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.positioninlineinputconnection__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positioninlineinputconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.positionnextconnection__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionnextconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.positionoutputconnection__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionoutputconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.positionpreviousconnection__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionpreviousconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.positionstatementinputconnection__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionstatementinputconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.recordsizeonblock__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.recordsizeonblock__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.topleft__property",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.topleft__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.drawer_class.updateconnectionhighlights_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.drawer_class.updateconnectionhighlights_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.dynamicshape_typealias",
+ "id": "reference/js/blockly.blockrendering_namespace.dynamicshape_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.externalvalueinput_class",
+ "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.externalvalueinput_class.connectionheight_property",
+ "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.connectionheight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.externalvalueinput_class.connectionoffsety_property",
+ "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.connectionoffsety_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.externalvalueinput_class.connectionwidth_property",
+ "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.connectionwidth_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.externalvalueinput_class.height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.externalvalueinput_class.width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.field_class",
+ "id": "reference/js/blockly.blockrendering_namespace.field_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.field_class.field_property",
+ "id": "reference/js/blockly.blockrendering_namespace.field_class.field_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.field_class.fliprtl_property",
+ "id": "reference/js/blockly.blockrendering_namespace.field_class.fliprtl_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.field_class.height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.field_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.field_class.iseditable_property",
+ "id": "reference/js/blockly.blockrendering_namespace.field_class.iseditable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.field_class.parentinput_property",
+ "id": "reference/js/blockly.blockrendering_namespace.field_class.parentinput_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.field_class.width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.field_class.width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.hat_class",
+ "id": "reference/js/blockly.blockrendering_namespace.hat_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.hat_class.ascenderheight_property",
+ "id": "reference/js/blockly.blockrendering_namespace.hat_class.ascenderheight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.icon_class",
+ "id": "reference/js/blockly.blockrendering_namespace.icon_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.icon_class.fliprtl_property",
+ "id": "reference/js/blockly.blockrendering_namespace.icon_class.fliprtl_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.icon_class.icon_property",
+ "id": "reference/js/blockly.blockrendering_namespace.icon_class.icon_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inlineinput_class",
+ "id": "reference/js/blockly.blockrendering_namespace.inlineinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inlineinput_class.connectionheight_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inlineinput_class.connectionheight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inlineinput_class.connectionwidth_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inlineinput_class.connectionwidth_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputconnection_class",
+ "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputconnection_class.align_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.align_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputconnection_class.connectedblock_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectedblock_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputconnection_class.connectedblockheight_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectedblockheight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputconnection_class.connectedblockwidth_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectedblockwidth_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputconnection_class.connectionoffsetx_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectionoffsetx_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputconnection_class.connectionoffsety_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectionoffsety_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputconnection_class.input_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.input_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputrow_class",
+ "id": "reference/js/blockly.blockrendering_namespace.inputrow_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputrow_class.connectedblockwidths_property",
+ "id": "reference/js/blockly.blockrendering_namespace.inputrow_class.connectedblockwidths_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputrow_class.endswithelemspacer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.inputrow_class.endswithelemspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inputrow_class.measure_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.inputrow_class.measure_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.inrowspacer_class",
+ "id": "reference/js/blockly.blockrendering_namespace.inrowspacer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.insidecorners_interface",
+ "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.insidecorners_interface.height_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.insidecorners_interface.pathbottom_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface.pathbottom_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.insidecorners_interface.pathtop_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface.pathtop_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.insidecorners_interface.width_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface.width_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.addconnectionhighlight_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.addconnectionhighlight_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.applycolour_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.applycolour_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.constants_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.constants_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.fliprtl_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.fliprtl_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.removeconnectionhighlight_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.removeconnectionhighlight_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.setpath_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.setpath_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.setstyle_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.setstyle_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.style_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.style_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.svgpath_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.svgpath_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.updatedraggingdelete_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updatedraggingdelete_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.updatehighlighted_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updatehighlighted_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.updateinsertionmarker_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updateinsertionmarker_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.updatemovable_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updatemovable_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.ipathobject_interface.updateselected_1_methodsignature",
+ "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updateselected_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.jaggededge_class",
+ "id": "reference/js/blockly.blockrendering_namespace.jaggededge_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.jaggedteeth_interface",
+ "id": "reference/js/blockly.blockrendering_namespace.jaggedteeth_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.jaggedteeth_interface.height_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.jaggedteeth_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.jaggedteeth_interface.path_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.jaggedteeth_interface.path_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.jaggedteeth_interface.width_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.jaggedteeth_interface.width_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.measurable_class",
+ "id": "reference/js/blockly.blockrendering_namespace.measurable_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.measurable_class.centerline_property",
+ "id": "reference/js/blockly.blockrendering_namespace.measurable_class.centerline_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.measurable_class.constants__property",
+ "id": "reference/js/blockly.blockrendering_namespace.measurable_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.measurable_class.height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.measurable_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.measurable_class.notchoffset_property",
+ "id": "reference/js/blockly.blockrendering_namespace.measurable_class.notchoffset_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.measurable_class.type_property",
+ "id": "reference/js/blockly.blockrendering_namespace.measurable_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.measurable_class.width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.measurable_class.width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.measurable_class.xpos_property",
+ "id": "reference/js/blockly.blockrendering_namespace.measurable_class.xpos_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.nextconnection_class",
+ "id": "reference/js/blockly.blockrendering_namespace.nextconnection_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.notch_interface",
+ "id": "reference/js/blockly.blockrendering_namespace.notch_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.notch_interface.height_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.notch_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.notch_interface.pathleft_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.notch_interface.pathleft_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.notch_interface.pathright_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.notch_interface.pathright_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.notch_interface.type_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.notch_interface.type_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.notch_interface.width_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.notch_interface.width_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outputconnection_class",
+ "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outputconnection_class.connectionoffsetx_property",
+ "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class.connectionoffsetx_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outputconnection_class.connectionoffsety_property",
+ "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class.connectionoffsety_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outputconnection_class.startx_property",
+ "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class.startx_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outsidecorners_interface",
+ "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outsidecorners_interface.bottomleft_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.bottomleft_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outsidecorners_interface.bottomright_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.bottomright_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outsidecorners_interface.rightheight_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.rightheight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outsidecorners_interface.topleft_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.topleft_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.outsidecorners_interface.topright_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.topright_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.addconnectionhighlight_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.addconnectionhighlight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.applycolour_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.applycolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.constants_property",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.constants_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.fliprtl_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.fliprtl_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.removeconnectionhighlight_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.removeconnectionhighlight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.setclass__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.setclass__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.setpath_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.setpath_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.setstyle_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.setstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.style_property",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.style_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.svgpath_property",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.svgpath_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.svgroot_property",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.svgroot_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.updatedisabled__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatedisabled__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.updatedraggingdelete_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatedraggingdelete_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.updatehighlighted_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatehighlighted_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.updateinsertionmarker_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updateinsertionmarker_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.updatemovable_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatemovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.updatereplacementfade_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatereplacementfade_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.updateselected_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updateselected_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.updateshadow__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updateshadow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.pathobject_class.updateshapeforinputhighlight_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updateshapeforinputhighlight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.previousconnection_class",
+ "id": "reference/js/blockly.blockrendering_namespace.previousconnection_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.puzzletab_interface",
+ "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.puzzletab_interface.height_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.puzzletab_interface.pathdown_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.pathdown_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.puzzletab_interface.pathup_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.pathup_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.puzzletab_interface.type_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.type_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.puzzletab_interface.width_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.width_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.register_1_function",
+ "id": "reference/js/blockly.blockrendering_namespace.register_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.constants__property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.dispose_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.getclassname_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.getclassname_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.getconstants_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.getconstants_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.init_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.makeconstants__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.makeconstants__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.makedrawer__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.makedrawer__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.makepathobject_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.makepathobject_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.makerenderinfo__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.makerenderinfo__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.name_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.orphancanconnectatend_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.orphancanconnectatend_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.overrides_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.overrides_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.refreshdom_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.refreshdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderer_class.shouldhighlightconnection_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderer_class.shouldhighlightconnection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.addalignmentpadding__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.addalignmentpadding__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.addelemspacing__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.addelemspacing__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.addinput__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.addinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.addrowspacing__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.addrowspacing__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.alignrowelements__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.alignrowelements__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.alignstatementrow__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.alignstatementrow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.block__property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.block__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.bottomrow_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.bottomrow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.computebounds__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.computebounds__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.constants__property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.createrows__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.createrows__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.finalize__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.finalize__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.getdesiredrowwidth__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getdesiredrowwidth__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.getelemcenterline__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getelemcenterline__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.getinrowspacing__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getinrowspacing__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.getmeasureableforconnection_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getmeasureableforconnection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.getrenderer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getrenderer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.getspacerrowheight__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getspacerrowheight__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.getspacerrowwidth__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getspacerrowwidth__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.inputrows_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.inputrows_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.iscollapsed_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.iscollapsed_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.isinline_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.isinline_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.isinsertionmarker_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.isinsertionmarker_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.makespacerrow__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.makespacerrow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.measure_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.measure_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.outputconnection_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.outputconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.populatebottomrow__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.populatebottomrow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.populatetoprow__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.populatetoprow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.recordelempositions__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.recordelempositions__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.renderer__property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.renderer__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.rows_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.rows_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.rtl_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.rtl_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.shouldstartnewrow__1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.shouldstartnewrow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.startx_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.startx_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.starty_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.starty_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.statementedge_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.statementedge_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.toprow_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.toprow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.renderinfo_class.widthwithchildren_property",
+ "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.widthwithchildren_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.roundcorner_class",
+ "id": "reference/js/blockly.blockrendering_namespace.roundcorner_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.align_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.align_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.constants__property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.elements_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.elements_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.endswithelemspacer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.endswithelemspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.getfirstspacer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.getfirstspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.getlastinput_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.getlastinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.getlastspacer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.getlastspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.hasdummyinput_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.hasdummyinput_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.hasexternalinput_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.hasexternalinput_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.hasinlineinput_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.hasinlineinput_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.hasjaggededge_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.hasjaggededge_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.hasstatement_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.hasstatement_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.measure_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.measure_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.minheight_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.minheight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.minwidth_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.minwidth_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.notchoffset_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.notchoffset_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.startswithelemspacer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.startswithelemspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.statementedge_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.statementedge_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.type_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.widthwithconnectedblocks_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.widthwithconnectedblocks_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.xpos_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.xpos_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.row_class.ypos_property",
+ "id": "reference/js/blockly.blockrendering_namespace.row_class.ypos_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.spacerrow_class",
+ "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.spacerrow_class.elements_property",
+ "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.elements_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.spacerrow_class.followsstatement_property",
+ "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.followsstatement_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.spacerrow_class.height_property",
+ "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.spacerrow_class.measure_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.measure_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.spacerrow_class.precedesstatement_property",
+ "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.precedesstatement_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.spacerrow_class.width_property",
+ "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.spacerrow_class.widthwithconnectedblocks_property",
+ "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.widthwithconnectedblocks_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.squarecorner_class",
+ "id": "reference/js/blockly.blockrendering_namespace.squarecorner_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.starthat_interface",
+ "id": "reference/js/blockly.blockrendering_namespace.starthat_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.starthat_interface.height_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.starthat_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.starthat_interface.path_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.starthat_interface.path_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.starthat_interface.width_propertysignature",
+ "id": "reference/js/blockly.blockrendering_namespace.starthat_interface.width_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.statementinput_class",
+ "id": "reference/js/blockly.blockrendering_namespace.statementinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class.ascenderheight_property",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class.ascenderheight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class.capline_property",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class.capline_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class.connection_property",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class.connection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class.endswithelemspacer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class.endswithelemspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class.hasleftsquarecorner_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class.hasleftsquarecorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class.haspreviousconnection_property",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class.haspreviousconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class.hasrightsquarecorner_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class.hasrightsquarecorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class.measure_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class.measure_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.toprow_class.startswithelemspacer_1_method",
+ "id": "reference/js/blockly.blockrendering_namespace.toprow_class.startswithelemspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.types_variable",
+ "id": "reference/js/blockly.blockrendering_namespace.types_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.blockrendering_namespace.unregister_1_function",
+ "id": "reference/js/blockly.blockrendering_namespace.unregister_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "browserEvents",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.browserevents_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.browserevents_namespace.bind_1_function",
+ "id": "reference/js/blockly.browserevents_namespace.bind_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.browserevents_namespace.conditionalbind_1_function",
+ "id": "reference/js/blockly.browserevents_namespace.conditionalbind_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.browserevents_namespace.data_typealias",
+ "id": "reference/js/blockly.browserevents_namespace.data_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.browserevents_namespace.getscrolldeltapixels_1_function",
+ "id": "reference/js/blockly.browserevents_namespace.getscrolldeltapixels_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.browserevents_namespace.isrightbutton_1_function",
+ "id": "reference/js/blockly.browserevents_namespace.isrightbutton_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.browserevents_namespace.istargetinput_1_function",
+ "id": "reference/js/blockly.browserevents_namespace.istargetinput_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.browserevents_namespace.mousetosvg_1_function",
+ "id": "reference/js/blockly.browserevents_namespace.mousetosvg_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.browserevents_namespace.unbind_1_function",
+ "id": "reference/js/blockly.browserevents_namespace.unbind_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "bubbles",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.bubbles_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class._constructor__1_constructor",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textbubble_class._constructor__1_constructor",
+ "id": "reference/js/blockly.bubbles_namespace.textbubble_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class._constructor__1_constructor",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.anchor_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.anchor_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.anchor_radius_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.anchor_radius_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.border_width_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.border_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.canbefocused_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.contentcontainer_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.contentcontainer_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.dispose_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.disposed_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.disposed_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.double_border_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.double_border_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.drag_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.drag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.enddrag_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.enddrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.getcolour_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.getcolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.getowner_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.getowner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.getsize_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.id_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.ismovable_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.ismovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.min_size_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.min_size_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.onkeydown_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.onkeydown_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.owner_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.owner_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.ownerrect_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.ownerrect_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.positionbyrect_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.positionbyrect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.positionrelativetoanchor_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.positionrelativetoanchor_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.revertdrag_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.revertdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.select_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.select_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.setanchorlocation_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.setanchorlocation_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.setcolour_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.setcolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.setdragging_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.setdragging_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.setpositionrelativetoanchor_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.setpositionrelativetoanchor_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.setsize_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.setsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.startdrag_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.startdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.svgroot_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.svgroot_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.tail_angle_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.tail_angle_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.tail_bend_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.tail_bend_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.tail_thickness_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.tail_thickness_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.unselect_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.unselect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.bubble_class.workspace_property",
+ "id": "reference/js/blockly.bubbles_namespace.bubble_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.miniworkspacebubble_class",
+ "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.miniworkspacebubble_class.addworkspacechangelistener_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.addworkspacechangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.miniworkspacebubble_class.anchor_property",
+ "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.anchor_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.miniworkspacebubble_class.dispose_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.miniworkspacebubble_class.ownerrect_property",
+ "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.ownerrect_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.miniworkspacebubble_class.updateblockstyles_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.updateblockstyles_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.miniworkspacebubble_class.workspace_property",
+ "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textbubble_class",
+ "id": "reference/js/blockly.bubbles_namespace.textbubble_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textbubble_class.anchor_property",
+ "id": "reference/js/blockly.bubbles_namespace.textbubble_class.anchor_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textbubble_class.gettext_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textbubble_class.gettext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textbubble_class.ownerrect_property",
+ "id": "reference/js/blockly.bubbles_namespace.textbubble_class.ownerrect_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textbubble_class.settext_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textbubble_class.settext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textbubble_class.workspace_property",
+ "id": "reference/js/blockly.bubbles_namespace.textbubble_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.addlocationchangelistener_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.addlocationchangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.addsizechangelistener_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.addsizechangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.addtextchangelistener_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.addtextchangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.anchor_property",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.anchor_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.getsize_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.gettext_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.gettext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.iseditable_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.iseditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.moveduringdrag_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.moveduringdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.owner_property",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.owner_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.ownerrect_property",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.ownerrect_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.positionbyrect_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.positionbyrect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.seteditable_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.seteditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.setpositionrelativetoanchor_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.setpositionrelativetoanchor_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.setsize_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.setsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.settext_1_method",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.settext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bubbles_namespace.textinputbubble_class.workspace_property",
+ "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.workspace_property"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "bumpObjects",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.bumpobjects_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.bumpobjects_namespace.bumpintobounds_variable",
+ "id": "reference/js/blockly.bumpobjects_namespace.bumpintobounds_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bumpobjects_namespace.bumpintoboundshandler_1_function",
+ "id": "reference/js/blockly.bumpobjects_namespace.bumpintoboundshandler_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.bumpobjects_namespace.bumptopobjectsintobounds_1_function",
+ "id": "reference/js/blockly.bumpobjects_namespace.bumptopobjectsintobounds_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "clipboard",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.clipboard_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.blockcopydata_interface",
+ "id": "reference/js/blockly.clipboard_namespace.blockcopydata_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.blockcopydata_interface.blockstate_propertysignature",
+ "id": "reference/js/blockly.clipboard_namespace.blockcopydata_interface.blockstate_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.blockcopydata_interface.typecounts_propertysignature",
+ "id": "reference/js/blockly.clipboard_namespace.blockcopydata_interface.typecounts_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.blockpaster_class",
+ "id": "reference/js/blockly.clipboard_namespace.blockpaster_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.blockpaster_class.paste_1_method",
+ "id": "reference/js/blockly.clipboard_namespace.blockpaster_class.paste_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.blockpaster_class.type_property",
+ "id": "reference/js/blockly.clipboard_namespace.blockpaster_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.copy_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.copy_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.getlastcopieddata_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.getlastcopieddata_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.getlastcopiedlocation_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.getlastcopiedlocation_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.getlastcopiedworkspace_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.getlastcopiedworkspace_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.paste_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.paste_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.paste_2_function",
+ "id": "reference/js/blockly.clipboard_namespace.paste_2_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.registry_namespace",
+ "id": "reference/js/blockly.clipboard_namespace.registry_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.registry_namespace.register_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.registry_namespace.register_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.registry_namespace.unregister_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.registry_namespace.unregister_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.setlastcopieddata_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.setlastcopieddata_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.setlastcopiedlocation_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.setlastcopiedlocation_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.clipboard_namespace.setlastcopiedworkspace_1_function",
+ "id": "reference/js/blockly.clipboard_namespace.setlastcopiedworkspace_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "CollapsibleToolboxCategory",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.closedicon_propertysignature",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.closedicon_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.container_propertysignature",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.container_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.contents_propertysignature",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.contents_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.icon_propertysignature",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.icon_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.label_propertysignature",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.label_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.openicon_propertysignature",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.openicon_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.row_propertysignature",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.row_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.rowcontentcontainer_propertysignature",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.rowcontentcontainer_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.selected_propertysignature",
+ "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.selected_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "comments",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.comments_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class._constructor__1_constructor",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class._constructor__1_constructor",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class._constructor__1_constructor",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class._constructor__1_constructor",
+ "id": "reference/js/blockly.comments_namespace.commentview_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class._constructor__1_constructor",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class._constructor__1_constructor",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class._constructor__1_constructor",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class.commentview_property",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.commentview_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class.container_property",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.container_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class.dispose_1_method",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class.icon_property",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.icon_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class.id_property",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class.performaction_1_method",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.performaction_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class.reposition_1_method",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.reposition_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.collapsecommentbarbutton_class.workspace_property",
+ "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.canbefocused_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.commentview_property",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.commentview_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.container_property",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.container_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.getcommentview_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getcommentview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.getmargin_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getmargin_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.getsize_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.icon_property",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.icon_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.id_property",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.isvisible_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.isvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.performaction_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.performaction_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.reposition_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.reposition_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentbarbutton_class.workspace_property",
+ "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.addtextchangelistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.addtextchangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.canbefocused_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.getdom_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.getdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.gettext_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.gettext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.id_property",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.removetextchangelistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.removetextchangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.seteditable_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.seteditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.setplaceholdertext_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.setplaceholdertext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.settext_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.settext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.updatesize_1_method",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.updatesize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commenteditor_class.workspace_property",
+ "id": "reference/js/blockly.comments_namespace.commenteditor_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class",
+ "id": "reference/js/blockly.comments_namespace.commentview_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.adddisposelistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.adddisposelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.addoncollapselistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.addoncollapselistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.addsizechangelistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.addsizechangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.addtextchangelistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.addtextchangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.bringtofront_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.bringtofront_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.commentid_property",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.commentid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.defaultcommentsize_property",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.defaultcommentsize_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.dispose_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.disposed_property",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.disposed_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.disposing_property",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.disposing_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.geteditorfocusablenode_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.geteditorfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.getrelativetosurfacexy_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.getrelativetosurfacexy_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.getsize_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.getsvgroot_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.getsvgroot_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.gettext_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.gettext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.iscollapsed_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.iscollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.isdeadordying_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.isdeadordying_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.isdisposed_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.isdisposed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.iseditable_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.iseditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.moveto_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.moveto_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.removedisposelistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.removedisposelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.removeoncollapselistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.removeoncollapselistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.removesizechangelistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.removesizechangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.removetextchangelistener_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.removetextchangelistener_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.setcollapsed_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.setcollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.seteditable_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.seteditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.setplaceholdertext_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.setplaceholdertext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.setsize_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.setsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.setsizewithoutfiringevents_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.setsizewithoutfiringevents_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.settext_1_method",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.settext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.commentview_class.workspace_property",
+ "id": "reference/js/blockly.comments_namespace.commentview_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class.commentview_property",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.commentview_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class.container_property",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.container_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class.dispose_1_method",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class.icon_property",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.icon_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class.id_property",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class.performaction_1_method",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.performaction_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class.reposition_1_method",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.reposition_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.deletecommentbarbutton_class.workspace_property",
+ "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.canbefocused_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.dispose_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.drag_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.drag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.enddrag_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.enddrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.getboundingrectangle_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getboundingrectangle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.geteditorfocusablenode_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.geteditorfocusablenode_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.getsize_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.getsvgroot_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getsvgroot_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.iscopyable_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.iscopyable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.ismovable_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.ismovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.moveby_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.moveby_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.moveto_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.moveto_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.revertdrag_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.revertdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.select_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.select_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.setcollapsed_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.setcollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.setdeletestyle_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.setdeletestyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.seteditable_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.seteditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.setplaceholdertext_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.setplaceholdertext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.setsize_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.setsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.settext_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.settext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.showcontextmenu_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.showcontextmenu_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.snaptogrid_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.snaptogrid_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.startdrag_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.startdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.tocopydata_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.tocopydata_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.unselect_1_method",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.unselect_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.view_property",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.view_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.renderedworkspacecomment_class.workspace_property",
+ "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.dispose_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.disposed_property",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.disposed_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.disposing_property",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.disposing_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.getrelativetosurfacexy_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.getrelativetosurfacexy_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.getsize_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.gettext_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.gettext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.id_property",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.id_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.iscollapsed_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.iscollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.isdeadordying_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isdeadordying_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.isdeletable_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isdeletable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.isdisposed_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isdisposed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.iseditable_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.iseditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.ismovable_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.ismovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.isowndeletable_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isowndeletable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.isowneditable_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isowneditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.isownmovable_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isownmovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.location_property",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.location_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.moveto_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.moveto_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.setcollapsed_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.setcollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.setdeletable_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.setdeletable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.seteditable_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.seteditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.setmovable_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.setmovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.setsize_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.setsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.settext_1_method",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.settext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.comments_namespace.workspacecomment_class.workspace_property",
+ "id": "reference/js/blockly.comments_namespace.workspacecomment_class.workspace_property"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "common",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.common_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.createblockdefinitionsfromjsonarray_1_function",
+ "id": "reference/js/blockly.common_namespace.createblockdefinitionsfromjsonarray_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.defineblocks_1_function",
+ "id": "reference/js/blockly.common_namespace.defineblocks_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.defineblockswithjsonarray_1_function",
+ "id": "reference/js/blockly.common_namespace.defineblockswithjsonarray_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.draggingconnections_variable",
+ "id": "reference/js/blockly.common_namespace.draggingconnections_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.getallworkspaces_1_function",
+ "id": "reference/js/blockly.common_namespace.getallworkspaces_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.getblocktypecounts_1_function",
+ "id": "reference/js/blockly.common_namespace.getblocktypecounts_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.getmainworkspace_1_function",
+ "id": "reference/js/blockly.common_namespace.getmainworkspace_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.getparentcontainer_1_function",
+ "id": "reference/js/blockly.common_namespace.getparentcontainer_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.getselected_1_function",
+ "id": "reference/js/blockly.common_namespace.getselected_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.getworkspacebyid_1_function",
+ "id": "reference/js/blockly.common_namespace.getworkspacebyid_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.registerworkspace_1_function",
+ "id": "reference/js/blockly.common_namespace.registerworkspace_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.setmainworkspace_1_function",
+ "id": "reference/js/blockly.common_namespace.setmainworkspace_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.setparentcontainer_1_function",
+ "id": "reference/js/blockly.common_namespace.setparentcontainer_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.svgresize_1_function",
+ "id": "reference/js/blockly.common_namespace.svgresize_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.test_only_variable",
+ "id": "reference/js/blockly.common_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.common_namespace.unregisterworkpace_1_function",
+ "id": "reference/js/blockly.common_namespace.unregisterworkpace_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ComponentManager",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.componentmanager_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_namespace.componentdatum_interface",
+ "id": "reference/js/blockly.componentmanager_namespace.componentdatum_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_namespace.componentdatum_interface.capabilities_propertysignature",
+ "id": "reference/js/blockly.componentmanager_namespace.componentdatum_interface.capabilities_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_namespace.componentdatum_interface.component_propertysignature",
+ "id": "reference/js/blockly.componentmanager_namespace.componentdatum_interface.component_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_namespace.componentdatum_interface.weight_propertysignature",
+ "id": "reference/js/blockly.componentmanager_namespace.componentdatum_interface.weight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.componentmanager_namespace.componentweight_enum",
+ "id": "reference/js/blockly.componentmanager_namespace.componentweight_enum"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "constants",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.constants_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.constants_namespace.collapsed_field_name_variable",
+ "id": "reference/js/blockly.constants_namespace.collapsed_field_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.constants_namespace.collapsed_input_name_variable",
+ "id": "reference/js/blockly.constants_namespace.collapsed_input_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.constants_namespace.manually_disabled_variable",
+ "id": "reference/js/blockly.constants_namespace.manually_disabled_variable"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ContextMenu",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.contextmenu_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.contextmenu_namespace.callbackfactory_1_function",
+ "id": "reference/js/blockly.contextmenu_namespace.callbackfactory_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenu_namespace.dispose_1_function",
+ "id": "reference/js/blockly.contextmenu_namespace.dispose_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenu_namespace.getcurrentblock_1_function",
+ "id": "reference/js/blockly.contextmenu_namespace.getcurrentblock_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenu_namespace.hide_1_function",
+ "id": "reference/js/blockly.contextmenu_namespace.hide_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenu_namespace.setcurrentblock_1_function",
+ "id": "reference/js/blockly.contextmenu_namespace.setcurrentblock_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenu_namespace.show_1_function",
+ "id": "reference/js/blockly.contextmenu_namespace.show_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ContextMenuItems",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.contextmenuitems_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registercleanup_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registercleanup_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registercollapse_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registercollapse_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registercollapseexpandblock_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registercollapseexpandblock_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registercomment_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registercomment_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registercommentcreate_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registercommentcreate_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registercommentdelete_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registercommentdelete_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registercommentduplicate_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registercommentduplicate_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registercommentoptions_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registercommentoptions_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registerdelete_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registerdelete_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registerdeleteall_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registerdeleteall_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registerdisable_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registerdisable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registerduplicate_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registerduplicate_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registerexpand_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registerexpand_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registerhelp_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registerhelp_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registerinline_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registerinline_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registerredo_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registerredo_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuitems_namespace.registerundo_1_function",
+ "id": "reference/js/blockly.contextmenuitems_namespace.registerundo_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ContextMenuRegistry",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.contextmenuregistry_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.callback_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.callback_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.enabled_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.enabled_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.separator_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.separator_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.text_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.text_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface.callback_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface.callback_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface.displaytext_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface.displaytext_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface.preconditionfn_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface.preconditionfn_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface.separator_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface.separator_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.contextmenuoption_typealias",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.contextmenuoption_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.corecontextmenuoption_interface",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.corecontextmenuoption_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.corecontextmenuoption_interface.scope_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.corecontextmenuoption_interface.scope_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.corecontextmenuoption_interface.weight_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.corecontextmenuoption_interface.weight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.coreregistryitem_interface",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.coreregistryitem_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.coreregistryitem_interface.id_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.coreregistryitem_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.coreregistryitem_interface.scopetype_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.coreregistryitem_interface.scopetype_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.coreregistryitem_interface.weight_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.coreregistryitem_interface.weight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.callback_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.callback_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.enabled_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.enabled_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.separator_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.separator_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.text_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.text_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.registryitem_typealias",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.registryitem_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.scope_interface",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.scope_interface.block_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface.block_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.scope_interface.comment_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface.comment_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.scope_interface.focusednode_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface.focusednode_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.scope_interface.workspace_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface.workspace_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.scopetype_enum",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.scopetype_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.callback_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.callback_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.enabled_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.enabled_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.separator_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.separator_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.text_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.text_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface.callback_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface.callback_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface.displaytext_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface.displaytext_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface.preconditionfn_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface.preconditionfn_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface.separator_propertysignature",
+ "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface.separator_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Css",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.css_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.css_namespace.inject_1_function",
+ "id": "reference/js/blockly.css_namespace.inject_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.css_namespace.register_1_function",
+ "id": "reference/js/blockly.css_namespace.register_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "dialog",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.dialog_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.dialog_namespace.alert_1_function",
+ "id": "reference/js/blockly.dialog_namespace.alert_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dialog_namespace.confirm_1_function",
+ "id": "reference/js/blockly.dialog_namespace.confirm_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dialog_namespace.prompt_1_function",
+ "id": "reference/js/blockly.dialog_namespace.prompt_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dialog_namespace.setalert_1_function",
+ "id": "reference/js/blockly.dialog_namespace.setalert_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dialog_namespace.setconfirm_1_function",
+ "id": "reference/js/blockly.dialog_namespace.setconfirm_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dialog_namespace.setprompt_1_function",
+ "id": "reference/js/blockly.dialog_namespace.setprompt_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dialog_namespace.settoast_1_function",
+ "id": "reference/js/blockly.dialog_namespace.settoast_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dialog_namespace.toast_1_function",
+ "id": "reference/js/blockly.dialog_namespace.toast_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "dragging",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.dragging_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.blockdragstrategy_class._constructor__1_constructor",
+ "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.bubbledragstrategy_class._constructor__1_constructor",
+ "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.commentdragstrategy_class._constructor__1_constructor",
+ "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class._constructor__1_constructor",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.blockdragstrategy_class",
+ "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.blockdragstrategy_class.drag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.drag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.blockdragstrategy_class.enddrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.enddrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.blockdragstrategy_class.getsearchradius_1_method",
+ "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.getsearchradius_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.blockdragstrategy_class.ismovable_1_method",
+ "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.ismovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.blockdragstrategy_class.revertdrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.revertdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.blockdragstrategy_class.shouldhealstack_1_method",
+ "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.shouldhealstack_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.blockdragstrategy_class.startdrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.startdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.bubbledragstrategy_class",
+ "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.bubbledragstrategy_class.drag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.drag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.bubbledragstrategy_class.enddrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.enddrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.bubbledragstrategy_class.ismovable_1_method",
+ "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.ismovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.bubbledragstrategy_class.revertdrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.revertdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.bubbledragstrategy_class.startdrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.startdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.commentdragstrategy_class",
+ "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.commentdragstrategy_class.drag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.drag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.commentdragstrategy_class.enddrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.enddrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.commentdragstrategy_class.ismovable_1_method",
+ "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.ismovable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.commentdragstrategy_class.revertdrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.revertdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.commentdragstrategy_class.startdrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.startdrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.draggable_property",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.draggable_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.dragtarget_property",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.dragtarget_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.ondrag_1_method",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.ondrag_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.ondragend_1_method",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.ondragend_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.ondragstart_1_method",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.ondragstart_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.pixelstoworkspaceunits_1_method",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.pixelstoworkspaceunits_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.shouldreturntostart_1_method",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.shouldreturntostart_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.startloc_property",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.startloc_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.updatedragtarget_1_method",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.updatedragtarget_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.workspace_property",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.workspace_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.dragging_namespace.dragger_class.woulddeletedraggable_1_method",
+ "id": "reference/js/blockly.dragging_namespace.dragger_class.woulddeletedraggable_1_method"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Events",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.events_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.abstract_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockbase_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.blockbase_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.blockchange_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreate_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.blockcreate_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdelete_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.blockdelete_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdrag_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.blockdrag_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.blockmove_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopen_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.bubbleopen_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.click_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.click_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentbase_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.commentbase_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchange_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.commentchange_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcollapse_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.commentcollapse_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreate_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.commentcreate_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdelete_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.commentdelete_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdrag_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.commentdrag_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.commentmove_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresize_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.commentresize_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.finishedloading_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.finishedloading_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selected_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.selected_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.themechange_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.themechange_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolboxitemselect_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.toolboxitemselect_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.trashcanopen_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.trashcanopen_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.uibase_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.uibase_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varbase_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.varbase_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreate_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.varcreate_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardelete_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.vardelete_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrename_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.varrename_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechange_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.vartypechange_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchange_class._constructor__1_constructor",
+ "id": "reference/js/blockly.events_namespace.viewportchange_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class",
+ "id": "reference/js/blockly.events_namespace.abstract_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.geteventworkspace__1_method",
+ "id": "reference/js/blockly.events_namespace.abstract_class.geteventworkspace__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.group_property",
+ "id": "reference/js/blockly.events_namespace.abstract_class.group_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.isblank_property",
+ "id": "reference/js/blockly.events_namespace.abstract_class.isblank_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.isnull_1_method",
+ "id": "reference/js/blockly.events_namespace.abstract_class.isnull_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.isuievent_property",
+ "id": "reference/js/blockly.events_namespace.abstract_class.isuievent_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.recordundo_property",
+ "id": "reference/js/blockly.events_namespace.abstract_class.recordundo_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.abstract_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.abstract_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.type_property",
+ "id": "reference/js/blockly.events_namespace.abstract_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstract_class.workspaceid_property",
+ "id": "reference/js/blockly.events_namespace.abstract_class.workspaceid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstracteventjson_interface",
+ "id": "reference/js/blockly.events_namespace.abstracteventjson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstracteventjson_interface.group_propertysignature",
+ "id": "reference/js/blockly.events_namespace.abstracteventjson_interface.group_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.abstracteventjson_interface.type_propertysignature",
+ "id": "reference/js/blockly.events_namespace.abstracteventjson_interface.type_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.block_change_variable",
+ "id": "reference/js/blockly.events_namespace.block_change_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.block_create_variable",
+ "id": "reference/js/blockly.events_namespace.block_create_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.block_delete_variable",
+ "id": "reference/js/blockly.events_namespace.block_delete_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.block_drag_variable",
+ "id": "reference/js/blockly.events_namespace.block_drag_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.block_field_intermediate_change_variable",
+ "id": "reference/js/blockly.events_namespace.block_field_intermediate_change_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.block_move_variable",
+ "id": "reference/js/blockly.events_namespace.block_move_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockbase_class",
+ "id": "reference/js/blockly.events_namespace.blockbase_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockbase_class.blockid_property",
+ "id": "reference/js/blockly.events_namespace.blockbase_class.blockid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockbase_class.isblank_property",
+ "id": "reference/js/blockly.events_namespace.blockbase_class.isblank_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockbase_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.blockbase_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockbasejson_interface",
+ "id": "reference/js/blockly.events_namespace.blockbasejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockbasejson_interface.blockid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockbasejson_interface.blockid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class",
+ "id": "reference/js/blockly.events_namespace.blockchange_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class.element_property",
+ "id": "reference/js/blockly.events_namespace.blockchange_class.element_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class.isnull_1_method",
+ "id": "reference/js/blockly.events_namespace.blockchange_class.isnull_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class.name_property",
+ "id": "reference/js/blockly.events_namespace.blockchange_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class.newvalue_property",
+ "id": "reference/js/blockly.events_namespace.blockchange_class.newvalue_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class.oldvalue_property",
+ "id": "reference/js/blockly.events_namespace.blockchange_class.oldvalue_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.blockchange_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class.setdisabledreason_1_method",
+ "id": "reference/js/blockly.events_namespace.blockchange_class.setdisabledreason_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.blockchange_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchange_class.type_property",
+ "id": "reference/js/blockly.events_namespace.blockchange_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchangejson_interface",
+ "id": "reference/js/blockly.events_namespace.blockchangejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchangejson_interface.disabledreason_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockchangejson_interface.disabledreason_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchangejson_interface.element_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockchangejson_interface.element_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchangejson_interface.name_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockchangejson_interface.name_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchangejson_interface.newvalue_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockchangejson_interface.newvalue_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockchangejson_interface.oldvalue_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockchangejson_interface.oldvalue_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreate_class",
+ "id": "reference/js/blockly.events_namespace.blockcreate_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreate_class.ids_property",
+ "id": "reference/js/blockly.events_namespace.blockcreate_class.ids_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreate_class.json_property",
+ "id": "reference/js/blockly.events_namespace.blockcreate_class.json_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreate_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.blockcreate_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreate_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.blockcreate_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreate_class.type_property",
+ "id": "reference/js/blockly.events_namespace.blockcreate_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreate_class.xml_property",
+ "id": "reference/js/blockly.events_namespace.blockcreate_class.xml_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreatejson_interface",
+ "id": "reference/js/blockly.events_namespace.blockcreatejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreatejson_interface.ids_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockcreatejson_interface.ids_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreatejson_interface.json_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockcreatejson_interface.json_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreatejson_interface.recordundo_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockcreatejson_interface.recordundo_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockcreatejson_interface.xml_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockcreatejson_interface.xml_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdelete_class",
+ "id": "reference/js/blockly.events_namespace.blockdelete_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdelete_class.ids_property",
+ "id": "reference/js/blockly.events_namespace.blockdelete_class.ids_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdelete_class.oldjson_property",
+ "id": "reference/js/blockly.events_namespace.blockdelete_class.oldjson_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdelete_class.oldxml_property",
+ "id": "reference/js/blockly.events_namespace.blockdelete_class.oldxml_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdelete_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.blockdelete_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdelete_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.blockdelete_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdelete_class.type_property",
+ "id": "reference/js/blockly.events_namespace.blockdelete_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdelete_class.wasshadow_property",
+ "id": "reference/js/blockly.events_namespace.blockdelete_class.wasshadow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdeletejson_interface",
+ "id": "reference/js/blockly.events_namespace.blockdeletejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdeletejson_interface.ids_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.ids_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdeletejson_interface.oldjson_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.oldjson_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdeletejson_interface.oldxml_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.oldxml_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdeletejson_interface.recordundo_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.recordundo_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdeletejson_interface.wasshadow_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.wasshadow_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdrag_class",
+ "id": "reference/js/blockly.events_namespace.blockdrag_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdrag_class.blockid_property",
+ "id": "reference/js/blockly.events_namespace.blockdrag_class.blockid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdrag_class.blocks_property",
+ "id": "reference/js/blockly.events_namespace.blockdrag_class.blocks_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdrag_class.isstart_property",
+ "id": "reference/js/blockly.events_namespace.blockdrag_class.isstart_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdrag_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.blockdrag_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdrag_class.type_property",
+ "id": "reference/js/blockly.events_namespace.blockdrag_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdragjson_interface",
+ "id": "reference/js/blockly.events_namespace.blockdragjson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdragjson_interface.blockid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockdragjson_interface.blockid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdragjson_interface.blocks_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockdragjson_interface.blocks_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockdragjson_interface.isstart_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockdragjson_interface.isstart_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class.isnull_1_method",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.isnull_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class.name_property",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class.newvalue_property",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.newvalue_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class.oldvalue_property",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.oldvalue_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class.recordundo_property",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.recordundo_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechange_class.type_property",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechangejson_interface",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechangejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechangejson_interface.name_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechangejson_interface.name_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechangejson_interface.newvalue_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechangejson_interface.newvalue_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockfieldintermediatechangejson_interface.oldvalue_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockfieldintermediatechangejson_interface.oldvalue_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class",
+ "id": "reference/js/blockly.events_namespace.blockmove_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.isnull_1_method",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.isnull_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.newcoordinate_property",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.newcoordinate_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.newinputname_property",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.newinputname_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.newparentid_property",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.newparentid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.oldcoordinate_property",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.oldcoordinate_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.oldinputname_property",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.oldinputname_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.oldparentid_property",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.oldparentid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.reason_property",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.reason_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.recordnew_1_method",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.recordnew_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.setreason_1_method",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.setreason_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmove_class.type_property",
+ "id": "reference/js/blockly.events_namespace.blockmove_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmovejson_interface",
+ "id": "reference/js/blockly.events_namespace.blockmovejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmovejson_interface.newcoordinate_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockmovejson_interface.newcoordinate_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmovejson_interface.newinputname_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockmovejson_interface.newinputname_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmovejson_interface.newparentid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockmovejson_interface.newparentid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmovejson_interface.oldcoordinate_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockmovejson_interface.oldcoordinate_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmovejson_interface.oldinputname_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockmovejson_interface.oldinputname_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmovejson_interface.oldparentid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockmovejson_interface.oldparentid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmovejson_interface.reason_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockmovejson_interface.reason_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.blockmovejson_interface.recordundo_propertysignature",
+ "id": "reference/js/blockly.events_namespace.blockmovejson_interface.recordundo_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubble_open_variable",
+ "id": "reference/js/blockly.events_namespace.bubble_open_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopen_class",
+ "id": "reference/js/blockly.events_namespace.bubbleopen_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopen_class.blockid_property",
+ "id": "reference/js/blockly.events_namespace.bubbleopen_class.blockid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopen_class.bubbletype_property",
+ "id": "reference/js/blockly.events_namespace.bubbleopen_class.bubbletype_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopen_class.isopen_property",
+ "id": "reference/js/blockly.events_namespace.bubbleopen_class.isopen_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopen_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.bubbleopen_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopen_class.type_property",
+ "id": "reference/js/blockly.events_namespace.bubbleopen_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopenjson_interface",
+ "id": "reference/js/blockly.events_namespace.bubbleopenjson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopenjson_interface.blockid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.bubbleopenjson_interface.blockid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopenjson_interface.bubbletype_propertysignature",
+ "id": "reference/js/blockly.events_namespace.bubbleopenjson_interface.bubbletype_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbleopenjson_interface.isopen_propertysignature",
+ "id": "reference/js/blockly.events_namespace.bubbleopenjson_interface.isopen_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bubbletype_enum",
+ "id": "reference/js/blockly.events_namespace.bubbletype_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bump_events_variable",
+ "id": "reference/js/blockly.events_namespace.bump_events_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.bumpevent_typealias",
+ "id": "reference/js/blockly.events_namespace.bumpevent_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.change_variable",
+ "id": "reference/js/blockly.events_namespace.change_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.clearpendingundo_1_function",
+ "id": "reference/js/blockly.events_namespace.clearpendingundo_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.click_class",
+ "id": "reference/js/blockly.events_namespace.click_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.click_class.blockid_property",
+ "id": "reference/js/blockly.events_namespace.click_class.blockid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.click_class.targettype_property",
+ "id": "reference/js/blockly.events_namespace.click_class.targettype_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.click_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.click_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.click_class.type_property",
+ "id": "reference/js/blockly.events_namespace.click_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.click_variable",
+ "id": "reference/js/blockly.events_namespace.click_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.clickjson_interface",
+ "id": "reference/js/blockly.events_namespace.clickjson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.clickjson_interface.blockid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.clickjson_interface.blockid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.clickjson_interface.targettype_propertysignature",
+ "id": "reference/js/blockly.events_namespace.clickjson_interface.targettype_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.clicktarget_enum",
+ "id": "reference/js/blockly.events_namespace.clicktarget_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.comment_change_variable",
+ "id": "reference/js/blockly.events_namespace.comment_change_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.comment_create_variable",
+ "id": "reference/js/blockly.events_namespace.comment_create_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.comment_delete_variable",
+ "id": "reference/js/blockly.events_namespace.comment_delete_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.comment_drag_variable",
+ "id": "reference/js/blockly.events_namespace.comment_drag_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.comment_move_variable",
+ "id": "reference/js/blockly.events_namespace.comment_move_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.comment_resize_variable",
+ "id": "reference/js/blockly.events_namespace.comment_resize_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentbase_class",
+ "id": "reference/js/blockly.events_namespace.commentbase_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentbase_class.commentcreatedeletehelper_1_method",
+ "id": "reference/js/blockly.events_namespace.commentbase_class.commentcreatedeletehelper_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentbase_class.commentid_property",
+ "id": "reference/js/blockly.events_namespace.commentbase_class.commentid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentbase_class.isblank_property",
+ "id": "reference/js/blockly.events_namespace.commentbase_class.isblank_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentbase_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.commentbase_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentbasejson_interface",
+ "id": "reference/js/blockly.events_namespace.commentbasejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentbasejson_interface.commentid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentbasejson_interface.commentid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchange_class",
+ "id": "reference/js/blockly.events_namespace.commentchange_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchange_class.isnull_1_method",
+ "id": "reference/js/blockly.events_namespace.commentchange_class.isnull_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchange_class.newcontents__property",
+ "id": "reference/js/blockly.events_namespace.commentchange_class.newcontents__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchange_class.oldcontents__property",
+ "id": "reference/js/blockly.events_namespace.commentchange_class.oldcontents__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchange_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.commentchange_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchange_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.commentchange_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchange_class.type_property",
+ "id": "reference/js/blockly.events_namespace.commentchange_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchangejson_interface",
+ "id": "reference/js/blockly.events_namespace.commentchangejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchangejson_interface.newcontents_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentchangejson_interface.newcontents_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentchangejson_interface.oldcontents_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentchangejson_interface.oldcontents_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcollapse_class",
+ "id": "reference/js/blockly.events_namespace.commentcollapse_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcollapse_class.newcollapsed_property",
+ "id": "reference/js/blockly.events_namespace.commentcollapse_class.newcollapsed_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcollapse_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.commentcollapse_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcollapse_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.commentcollapse_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcollapse_class.type_property",
+ "id": "reference/js/blockly.events_namespace.commentcollapse_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcollapsejson_interface",
+ "id": "reference/js/blockly.events_namespace.commentcollapsejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcollapsejson_interface.newcollapsed_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentcollapsejson_interface.newcollapsed_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreate_class",
+ "id": "reference/js/blockly.events_namespace.commentcreate_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreate_class.json_property",
+ "id": "reference/js/blockly.events_namespace.commentcreate_class.json_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreate_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.commentcreate_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreate_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.commentcreate_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreate_class.type_property",
+ "id": "reference/js/blockly.events_namespace.commentcreate_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreate_class.xml_property",
+ "id": "reference/js/blockly.events_namespace.commentcreate_class.xml_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreatejson_interface",
+ "id": "reference/js/blockly.events_namespace.commentcreatejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreatejson_interface.json_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentcreatejson_interface.json_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentcreatejson_interface.xml_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentcreatejson_interface.xml_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdelete_class",
+ "id": "reference/js/blockly.events_namespace.commentdelete_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdelete_class.json_property",
+ "id": "reference/js/blockly.events_namespace.commentdelete_class.json_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdelete_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.commentdelete_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdelete_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.commentdelete_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdelete_class.type_property",
+ "id": "reference/js/blockly.events_namespace.commentdelete_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdelete_class.xml_property",
+ "id": "reference/js/blockly.events_namespace.commentdelete_class.xml_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdrag_class",
+ "id": "reference/js/blockly.events_namespace.commentdrag_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdrag_class.commentid_property",
+ "id": "reference/js/blockly.events_namespace.commentdrag_class.commentid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdrag_class.isstart_property",
+ "id": "reference/js/blockly.events_namespace.commentdrag_class.isstart_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdrag_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.commentdrag_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdrag_class.type_property",
+ "id": "reference/js/blockly.events_namespace.commentdrag_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdragjson_interface",
+ "id": "reference/js/blockly.events_namespace.commentdragjson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdragjson_interface.commentid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentdragjson_interface.commentid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentdragjson_interface.isstart_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentdragjson_interface.isstart_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class",
+ "id": "reference/js/blockly.events_namespace.commentmove_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.comment__property",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.comment__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.isnull_1_method",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.isnull_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.newcoordinate__property",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.newcoordinate__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.oldcoordinate__property",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.oldcoordinate__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.reason_property",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.reason_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.recordnew_1_method",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.recordnew_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.setoldcoordinate_1_method",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.setoldcoordinate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.setreason_1_method",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.setreason_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmove_class.type_property",
+ "id": "reference/js/blockly.events_namespace.commentmove_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmovejson_interface",
+ "id": "reference/js/blockly.events_namespace.commentmovejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmovejson_interface.newcoordinate_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentmovejson_interface.newcoordinate_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentmovejson_interface.oldcoordinate_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentmovejson_interface.oldcoordinate_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresize_class",
+ "id": "reference/js/blockly.events_namespace.commentresize_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresize_class.isnull_1_method",
+ "id": "reference/js/blockly.events_namespace.commentresize_class.isnull_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresize_class.newsize_property",
+ "id": "reference/js/blockly.events_namespace.commentresize_class.newsize_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresize_class.oldsize_property",
+ "id": "reference/js/blockly.events_namespace.commentresize_class.oldsize_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresize_class.recordcurrentsizeasnewsize_1_method",
+ "id": "reference/js/blockly.events_namespace.commentresize_class.recordcurrentsizeasnewsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresize_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.commentresize_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresize_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.commentresize_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresize_class.type_property",
+ "id": "reference/js/blockly.events_namespace.commentresize_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresizejson_interface",
+ "id": "reference/js/blockly.events_namespace.commentresizejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresizejson_interface.newheight_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentresizejson_interface.newheight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresizejson_interface.newwidth_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentresizejson_interface.newwidth_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresizejson_interface.oldheight_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentresizejson_interface.oldheight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.commentresizejson_interface.oldwidth_propertysignature",
+ "id": "reference/js/blockly.events_namespace.commentresizejson_interface.oldwidth_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.create_variable",
+ "id": "reference/js/blockly.events_namespace.create_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.delete_variable",
+ "id": "reference/js/blockly.events_namespace.delete_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.disable_1_function",
+ "id": "reference/js/blockly.events_namespace.disable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.disableorphans_1_function",
+ "id": "reference/js/blockly.events_namespace.disableorphans_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.enable_1_function",
+ "id": "reference/js/blockly.events_namespace.enable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.filter_1_function",
+ "id": "reference/js/blockly.events_namespace.filter_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.finished_loading_variable",
+ "id": "reference/js/blockly.events_namespace.finished_loading_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.finishedloading_class",
+ "id": "reference/js/blockly.events_namespace.finishedloading_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.finishedloading_class.isblank_property",
+ "id": "reference/js/blockly.events_namespace.finishedloading_class.isblank_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.finishedloading_class.recordundo_property",
+ "id": "reference/js/blockly.events_namespace.finishedloading_class.recordundo_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.finishedloading_class.type_property",
+ "id": "reference/js/blockly.events_namespace.finishedloading_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.fire_1_function",
+ "id": "reference/js/blockly.events_namespace.fire_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.fromjson_1_function",
+ "id": "reference/js/blockly.events_namespace.fromjson_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.get_1_function",
+ "id": "reference/js/blockly.events_namespace.get_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.getgroup_1_function",
+ "id": "reference/js/blockly.events_namespace.getgroup_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.getrecordundo_1_function",
+ "id": "reference/js/blockly.events_namespace.getrecordundo_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.isenabled_1_function",
+ "id": "reference/js/blockly.events_namespace.isenabled_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.move_variable",
+ "id": "reference/js/blockly.events_namespace.move_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selected_class",
+ "id": "reference/js/blockly.events_namespace.selected_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selected_class.newelementid_property",
+ "id": "reference/js/blockly.events_namespace.selected_class.newelementid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selected_class.oldelementid_property",
+ "id": "reference/js/blockly.events_namespace.selected_class.oldelementid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selected_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.selected_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selected_class.type_property",
+ "id": "reference/js/blockly.events_namespace.selected_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selected_variable",
+ "id": "reference/js/blockly.events_namespace.selected_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selectedjson_interface",
+ "id": "reference/js/blockly.events_namespace.selectedjson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selectedjson_interface.newelementid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.selectedjson_interface.newelementid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.selectedjson_interface.oldelementid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.selectedjson_interface.oldelementid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.setgroup_1_function",
+ "id": "reference/js/blockly.events_namespace.setgroup_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.setrecordundo_1_function",
+ "id": "reference/js/blockly.events_namespace.setrecordundo_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.theme_change_variable",
+ "id": "reference/js/blockly.events_namespace.theme_change_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.themechange_class",
+ "id": "reference/js/blockly.events_namespace.themechange_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.themechange_class.themename_property",
+ "id": "reference/js/blockly.events_namespace.themechange_class.themename_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.themechange_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.themechange_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.themechange_class.type_property",
+ "id": "reference/js/blockly.events_namespace.themechange_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.themechangejson_interface",
+ "id": "reference/js/blockly.events_namespace.themechangejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.themechangejson_interface.themename_propertysignature",
+ "id": "reference/js/blockly.events_namespace.themechangejson_interface.themename_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolbox_item_select_variable",
+ "id": "reference/js/blockly.events_namespace.toolbox_item_select_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolboxitemselect_class",
+ "id": "reference/js/blockly.events_namespace.toolboxitemselect_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolboxitemselect_class.newitem_property",
+ "id": "reference/js/blockly.events_namespace.toolboxitemselect_class.newitem_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolboxitemselect_class.olditem_property",
+ "id": "reference/js/blockly.events_namespace.toolboxitemselect_class.olditem_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolboxitemselect_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.toolboxitemselect_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolboxitemselect_class.type_property",
+ "id": "reference/js/blockly.events_namespace.toolboxitemselect_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolboxitemselectjson_interface",
+ "id": "reference/js/blockly.events_namespace.toolboxitemselectjson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolboxitemselectjson_interface.newitem_propertysignature",
+ "id": "reference/js/blockly.events_namespace.toolboxitemselectjson_interface.newitem_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.toolboxitemselectjson_interface.olditem_propertysignature",
+ "id": "reference/js/blockly.events_namespace.toolboxitemselectjson_interface.olditem_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.trashcan_open_variable",
+ "id": "reference/js/blockly.events_namespace.trashcan_open_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.trashcanopen_class",
+ "id": "reference/js/blockly.events_namespace.trashcanopen_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.trashcanopen_class.isopen_property",
+ "id": "reference/js/blockly.events_namespace.trashcanopen_class.isopen_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.trashcanopen_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.trashcanopen_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.trashcanopen_class.type_property",
+ "id": "reference/js/blockly.events_namespace.trashcanopen_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.trashcanopenjson_interface",
+ "id": "reference/js/blockly.events_namespace.trashcanopenjson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.trashcanopenjson_interface.isopen_propertysignature",
+ "id": "reference/js/blockly.events_namespace.trashcanopenjson_interface.isopen_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.ui_variable",
+ "id": "reference/js/blockly.events_namespace.ui_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.uibase_class",
+ "id": "reference/js/blockly.events_namespace.uibase_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.uibase_class.isblank_property",
+ "id": "reference/js/blockly.events_namespace.uibase_class.isblank_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.uibase_class.isuievent_property",
+ "id": "reference/js/blockly.events_namespace.uibase_class.isuievent_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.uibase_class.recordundo_property",
+ "id": "reference/js/blockly.events_namespace.uibase_class.recordundo_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.uibase_class.workspaceid_property",
+ "id": "reference/js/blockly.events_namespace.uibase_class.workspaceid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.var_create_variable",
+ "id": "reference/js/blockly.events_namespace.var_create_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.var_delete_variable",
+ "id": "reference/js/blockly.events_namespace.var_delete_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.var_rename_variable",
+ "id": "reference/js/blockly.events_namespace.var_rename_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varbase_class",
+ "id": "reference/js/blockly.events_namespace.varbase_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varbase_class.isblank_property",
+ "id": "reference/js/blockly.events_namespace.varbase_class.isblank_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varbase_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.varbase_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varbase_class.varid_property",
+ "id": "reference/js/blockly.events_namespace.varbase_class.varid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varbasejson_interface",
+ "id": "reference/js/blockly.events_namespace.varbasejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varbasejson_interface.varid_propertysignature",
+ "id": "reference/js/blockly.events_namespace.varbasejson_interface.varid_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreate_class",
+ "id": "reference/js/blockly.events_namespace.varcreate_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreate_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.varcreate_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreate_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.varcreate_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreate_class.type_property",
+ "id": "reference/js/blockly.events_namespace.varcreate_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreate_class.varname_property",
+ "id": "reference/js/blockly.events_namespace.varcreate_class.varname_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreate_class.vartype_property",
+ "id": "reference/js/blockly.events_namespace.varcreate_class.vartype_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreatejson_interface",
+ "id": "reference/js/blockly.events_namespace.varcreatejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreatejson_interface.varname_propertysignature",
+ "id": "reference/js/blockly.events_namespace.varcreatejson_interface.varname_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varcreatejson_interface.vartype_propertysignature",
+ "id": "reference/js/blockly.events_namespace.varcreatejson_interface.vartype_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardelete_class",
+ "id": "reference/js/blockly.events_namespace.vardelete_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardelete_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.vardelete_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardelete_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.vardelete_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardelete_class.type_property",
+ "id": "reference/js/blockly.events_namespace.vardelete_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardelete_class.varname_property",
+ "id": "reference/js/blockly.events_namespace.vardelete_class.varname_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardelete_class.vartype_property",
+ "id": "reference/js/blockly.events_namespace.vardelete_class.vartype_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardeletejson_interface",
+ "id": "reference/js/blockly.events_namespace.vardeletejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardeletejson_interface.varname_propertysignature",
+ "id": "reference/js/blockly.events_namespace.vardeletejson_interface.varname_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vardeletejson_interface.vartype_propertysignature",
+ "id": "reference/js/blockly.events_namespace.vardeletejson_interface.vartype_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrename_class",
+ "id": "reference/js/blockly.events_namespace.varrename_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrename_class.newname_property",
+ "id": "reference/js/blockly.events_namespace.varrename_class.newname_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrename_class.oldname_property",
+ "id": "reference/js/blockly.events_namespace.varrename_class.oldname_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrename_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.varrename_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrename_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.varrename_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrename_class.type_property",
+ "id": "reference/js/blockly.events_namespace.varrename_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrenamejson_interface",
+ "id": "reference/js/blockly.events_namespace.varrenamejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrenamejson_interface.newname_propertysignature",
+ "id": "reference/js/blockly.events_namespace.varrenamejson_interface.newname_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.varrenamejson_interface.oldname_propertysignature",
+ "id": "reference/js/blockly.events_namespace.varrenamejson_interface.oldname_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechange_class",
+ "id": "reference/js/blockly.events_namespace.vartypechange_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechange_class.newtype_property",
+ "id": "reference/js/blockly.events_namespace.vartypechange_class.newtype_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechange_class.oldtype_property",
+ "id": "reference/js/blockly.events_namespace.vartypechange_class.oldtype_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechange_class.run_1_method",
+ "id": "reference/js/blockly.events_namespace.vartypechange_class.run_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechange_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.vartypechange_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechange_class.type_property",
+ "id": "reference/js/blockly.events_namespace.vartypechange_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechangejson_interface",
+ "id": "reference/js/blockly.events_namespace.vartypechangejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechangejson_interface.newtype_propertysignature",
+ "id": "reference/js/blockly.events_namespace.vartypechangejson_interface.newtype_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.vartypechangejson_interface.oldtype_propertysignature",
+ "id": "reference/js/blockly.events_namespace.vartypechangejson_interface.oldtype_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewport_change_variable",
+ "id": "reference/js/blockly.events_namespace.viewport_change_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchange_class",
+ "id": "reference/js/blockly.events_namespace.viewportchange_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchange_class.oldscale_property",
+ "id": "reference/js/blockly.events_namespace.viewportchange_class.oldscale_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchange_class.scale_property",
+ "id": "reference/js/blockly.events_namespace.viewportchange_class.scale_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchange_class.tojson_1_method",
+ "id": "reference/js/blockly.events_namespace.viewportchange_class.tojson_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchange_class.type_property",
+ "id": "reference/js/blockly.events_namespace.viewportchange_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchange_class.viewleft_property",
+ "id": "reference/js/blockly.events_namespace.viewportchange_class.viewleft_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchange_class.viewtop_property",
+ "id": "reference/js/blockly.events_namespace.viewportchange_class.viewtop_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchangejson_interface",
+ "id": "reference/js/blockly.events_namespace.viewportchangejson_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchangejson_interface.oldscale_propertysignature",
+ "id": "reference/js/blockly.events_namespace.viewportchangejson_interface.oldscale_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchangejson_interface.scale_propertysignature",
+ "id": "reference/js/blockly.events_namespace.viewportchangejson_interface.scale_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchangejson_interface.viewleft_propertysignature",
+ "id": "reference/js/blockly.events_namespace.viewportchangejson_interface.viewleft_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.events_namespace.viewportchangejson_interface.viewtop_propertysignature",
+ "id": "reference/js/blockly.events_namespace.viewportchangejson_interface.viewtop_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Extensions",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.extensions_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.extensions_namespace.apply_1_function",
+ "id": "reference/js/blockly.extensions_namespace.apply_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.extensions_namespace.buildtooltipfordropdown_1_function",
+ "id": "reference/js/blockly.extensions_namespace.buildtooltipfordropdown_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.extensions_namespace.buildtooltipwithfieldtext_1_function",
+ "id": "reference/js/blockly.extensions_namespace.buildtooltipwithfieldtext_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.extensions_namespace.isregistered_1_function",
+ "id": "reference/js/blockly.extensions_namespace.isregistered_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.extensions_namespace.register_1_function",
+ "id": "reference/js/blockly.extensions_namespace.register_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.extensions_namespace.registermixin_1_function",
+ "id": "reference/js/blockly.extensions_namespace.registermixin_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.extensions_namespace.registermutator_1_function",
+ "id": "reference/js/blockly.extensions_namespace.registermutator_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.extensions_namespace.test_only_variable",
+ "id": "reference/js/blockly.extensions_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.extensions_namespace.unregister_1_function",
+ "id": "reference/js/blockly.extensions_namespace.unregister_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "fieldRegistry",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.fieldregistry_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.fieldregistry_namespace.register_1_function",
+ "id": "reference/js/blockly.fieldregistry_namespace.register_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldregistry_namespace.registrablefield_interface",
+ "id": "reference/js/blockly.fieldregistry_namespace.registrablefield_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldregistry_namespace.registrablefield_interface._new__1_constructsignature",
+ "id": "reference/js/blockly.fieldregistry_namespace.registrablefield_interface._new__1_constructsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldregistry_namespace.registrablefield_interface.fromjson_1_methodsignature",
+ "id": "reference/js/blockly.fieldregistry_namespace.registrablefield_interface.fromjson_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldregistry_namespace.test_only_variable",
+ "id": "reference/js/blockly.fieldregistry_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.fieldregistry_namespace.unregister_1_function",
+ "id": "reference/js/blockly.fieldregistry_namespace.unregister_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "geras",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.geras_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.constantprovider_class._constructor__1_constructor",
+ "id": "reference/js/blockly.geras_namespace.constantprovider_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.geras_namespace.drawer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class._constructor__1_constructor",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class._constructor__1_constructor",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.inlineinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.geras_namespace.inlineinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class._constructor__1_constructor",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.geras_namespace.renderer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class._constructor__1_constructor",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.statementinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.geras_namespace.statementinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.constantprovider_class",
+ "id": "reference/js/blockly.geras_namespace.constantprovider_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.constantprovider_class.dark_path_offset_property",
+ "id": "reference/js/blockly.geras_namespace.constantprovider_class.dark_path_offset_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.constantprovider_class.field_text_baseline_center_property",
+ "id": "reference/js/blockly.geras_namespace.constantprovider_class.field_text_baseline_center_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.constantprovider_class.getcss__1_method",
+ "id": "reference/js/blockly.geras_namespace.constantprovider_class.getcss__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.constantprovider_class.max_bottom_width_property",
+ "id": "reference/js/blockly.geras_namespace.constantprovider_class.max_bottom_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.constantprovider_class.statement_bottom_spacer_property",
+ "id": "reference/js/blockly.geras_namespace.constantprovider_class.statement_bottom_spacer_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class",
+ "id": "reference/js/blockly.geras_namespace.drawer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.constants__property",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.draw_1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.draw_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.drawbottom__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.drawbottom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.drawinlineinput__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.drawinlineinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.drawjaggededge__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.drawjaggededge__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.drawleft__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.drawleft__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.drawrightsiderow__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.drawrightsiderow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.drawstatementinput__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.drawstatementinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.drawtop__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.drawtop__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.drawvalueinput__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.drawvalueinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.highlighter__property",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.highlighter__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.positionexternalvalueconnection__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.positionexternalvalueconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.positioninlineinputconnection__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.positioninlineinputconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.positionnextconnection__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.positionnextconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.drawer_class.positionstatementinputconnection__1_method",
+ "id": "reference/js/blockly.geras_namespace.drawer_class.positionstatementinputconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.constantprovider_property",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.constantprovider_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.init_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.inside_corner_property",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.inside_corner_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.jagged_teeth_property",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.jagged_teeth_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.makeinsidecorner_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makeinsidecorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.makejaggedteeth_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makejaggedteeth_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.makenotch_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makenotch_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.makeoutsidecorner_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makeoutsidecorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.makepuzzletab_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makepuzzletab_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.makestarthat_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makestarthat_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.notch_property",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.notch_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.offset_property",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.offset_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.outside_corner_property",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.outside_corner_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.puzzle_tab_property",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.puzzle_tab_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.start_hat_property",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.start_hat_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlightconstantprovider_class.start_point_property",
+ "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.start_point_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.constants__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.drawbottomrow_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.drawbottomrow_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.drawinlineinput_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.drawinlineinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.drawjaggededge__1_method",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.drawjaggededge__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.drawleft_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.drawleft_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.drawrightsiderow_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.drawrightsiderow_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.drawstatementinput_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.drawstatementinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.drawtopcorner_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.drawtopcorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.drawvalueinput_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.drawvalueinput_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.getpath_1_method",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.getpath_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.highlightconstants__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.highlightconstants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.info__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.info__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.inlinesteps__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.inlinesteps__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.insidecornerpaths__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.insidecornerpaths__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.jaggedteethpaths__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.jaggedteethpaths__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.notchpaths__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.notchpaths__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.outsidecornerpaths__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.outsidecornerpaths__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.puzzletabpaths__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.puzzletabpaths__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.rtl__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.rtl__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.startpaths__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.startpaths__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.highlighter_class.steps__property",
+ "id": "reference/js/blockly.geras_namespace.highlighter_class.steps__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.inlineinput_class",
+ "id": "reference/js/blockly.geras_namespace.inlineinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.inlineinput_class.constants__property",
+ "id": "reference/js/blockly.geras_namespace.inlineinput_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.applycolour_1_method",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.applycolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.colourdark_property",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.colourdark_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.constants_property",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.constants_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.fliprtl_1_method",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.fliprtl_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.sethighlightpath_1_method",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.sethighlightpath_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.setpath_1_method",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.setpath_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.setstyle_1_method",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.setstyle_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.svgpathdark_property",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.svgpathdark_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.svgpathlight_property",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.svgpathlight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.updatedisabled__1_method",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.updatedisabled__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.updatehighlighted_1_method",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.updatehighlighted_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.pathobject_class.updateshadow__1_method",
+ "id": "reference/js/blockly.geras_namespace.pathobject_class.updateshadow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class",
+ "id": "reference/js/blockly.geras_namespace.renderer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class.gethighlightconstants_1_method",
+ "id": "reference/js/blockly.geras_namespace.renderer_class.gethighlightconstants_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class.init_1_method",
+ "id": "reference/js/blockly.geras_namespace.renderer_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class.makeconstants__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderer_class.makeconstants__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class.makedrawer__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderer_class.makedrawer__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class.makehighlightconstants__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderer_class.makehighlightconstants__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class.makepathobject_1_method",
+ "id": "reference/js/blockly.geras_namespace.renderer_class.makepathobject_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class.makerenderinfo__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderer_class.makerenderinfo__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderer_class.refreshdom_1_method",
+ "id": "reference/js/blockly.geras_namespace.renderer_class.refreshdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.addelemspacing__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.addelemspacing__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.addinput__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.addinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.alignrowelements__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.alignrowelements__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.constants__property",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.finalize__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.finalize__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.getdesiredrowwidth__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.getdesiredrowwidth__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.getelemcenterline__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.getelemcenterline__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.getinrowspacing__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.getinrowspacing__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.getrenderer_1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.getrenderer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.getspacerrowheight__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.getspacerrowheight__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.populatebottomrow__1_method",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.populatebottomrow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.renderinfo_class.renderer__property",
+ "id": "reference/js/blockly.geras_namespace.renderinfo_class.renderer__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.statementinput_class",
+ "id": "reference/js/blockly.geras_namespace.statementinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.geras_namespace.statementinput_class.constants__property",
+ "id": "reference/js/blockly.geras_namespace.statementinput_class.constants__property"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "icons",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.icons_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class._constructor__1_constructor",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class._constructor__1_constructor",
+ "id": "reference/js/blockly.icons_namespace.icon_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icontype_class._constructor__1_constructor",
+ "id": "reference/js/blockly.icons_namespace.icontype_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class._constructor__1_constructor",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.applycolour_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.applycolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.bubbleisvisible_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.bubbleisvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.createbubble_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.createbubble_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.dispose_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.getbubble_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.getbubble_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.getbubblelocation_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.getbubblelocation_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.getbubblesize_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.getbubblesize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.getsize_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.gettext_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.gettext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.gettype_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.gettype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.getweight_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.getweight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.initview_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.isclickableinflyout_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.isclickableinflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.loadstate_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.loadstate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.onbubblelocationchange_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.onbubblelocationchange_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.onclick_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.onclick_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.onlocationchange_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.onlocationchange_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.onsizechange_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.onsizechange_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.ontextchange_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.ontextchange_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.savestate_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.savestate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.setbubblelocation_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.setbubblelocation_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.setbubblesize_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.setbubblesize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.setbubblevisible_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.setbubblevisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.settext_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.settext_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.sourceblock_property",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.sourceblock_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.type_property",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.updateeditable_1_method",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.updateeditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commenticon_class.weight_property",
+ "id": "reference/js/blockly.icons_namespace.commenticon_class.weight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commentstate_interface",
+ "id": "reference/js/blockly.icons_namespace.commentstate_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commentstate_interface.height_propertysignature",
+ "id": "reference/js/blockly.icons_namespace.commentstate_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commentstate_interface.pinned_propertysignature",
+ "id": "reference/js/blockly.icons_namespace.commentstate_interface.pinned_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commentstate_interface.text_propertysignature",
+ "id": "reference/js/blockly.icons_namespace.commentstate_interface.text_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commentstate_interface.width_propertysignature",
+ "id": "reference/js/blockly.icons_namespace.commentstate_interface.width_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commentstate_interface.x_propertysignature",
+ "id": "reference/js/blockly.icons_namespace.commentstate_interface.x_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.commentstate_interface.y_propertysignature",
+ "id": "reference/js/blockly.icons_namespace.commentstate_interface.y_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.exceptions_namespace",
+ "id": "reference/js/blockly.icons_namespace.exceptions_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.exceptions_namespace.duplicateicontype_class",
+ "id": "reference/js/blockly.icons_namespace.exceptions_namespace.duplicateicontype_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.exceptions_namespace.duplicateicontype_class.icon_property",
+ "id": "reference/js/blockly.icons_namespace.exceptions_namespace.duplicateicontype_class.icon_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class",
+ "id": "reference/js/blockly.icons_namespace.icon_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.applycolour_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.applycolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.canbefocused_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.canbefocused_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.dispose_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.getfocusableelement_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.getfocusableelement_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.getfocusabletree_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.getfocusabletree_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.getsize_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.getsourceblock_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.getsourceblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.gettooltip_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.gettooltip_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.gettype_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.gettype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.getweight_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.getweight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.hideforinsertionmarker_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.hideforinsertionmarker_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.initview_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.isclickableinflyout_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.isclickableinflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.isshownwhencollapsed_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.isshownwhencollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.offsetinblock_property",
+ "id": "reference/js/blockly.icons_namespace.icon_class.offsetinblock_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.onclick_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.onclick_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.onlocationchange_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.onlocationchange_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.onnodeblur_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.onnodeblur_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.onnodefocus_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.onnodefocus_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.setoffsetinblock_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.setoffsetinblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.settooltip_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.settooltip_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.sourceblock_property",
+ "id": "reference/js/blockly.icons_namespace.icon_class.sourceblock_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.svgroot_property",
+ "id": "reference/js/blockly.icons_namespace.icon_class.svgroot_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.tooltip_property",
+ "id": "reference/js/blockly.icons_namespace.icon_class.tooltip_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.updatecollapsed_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.updatecollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.updateeditable_1_method",
+ "id": "reference/js/blockly.icons_namespace.icon_class.updateeditable_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icon_class.workspacelocation_property",
+ "id": "reference/js/blockly.icons_namespace.icon_class.workspacelocation_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icontype_class",
+ "id": "reference/js/blockly.icons_namespace.icontype_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icontype_class.comment_property",
+ "id": "reference/js/blockly.icons_namespace.icontype_class.comment_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icontype_class.equals_1_method",
+ "id": "reference/js/blockly.icons_namespace.icontype_class.equals_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icontype_class.mutator_property",
+ "id": "reference/js/blockly.icons_namespace.icontype_class.mutator_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icontype_class.tostring_1_method",
+ "id": "reference/js/blockly.icons_namespace.icontype_class.tostring_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.icontype_class.warning_property",
+ "id": "reference/js/blockly.icons_namespace.icontype_class.warning_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.applycolour_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.applycolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.bubbleisvisible_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.bubbleisvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.dispose_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.getbubble_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.getbubble_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.getsize_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.gettype_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.gettype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.getweight_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.getweight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.getworkspace_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.getworkspace_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.initview_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.isclickableinflyout_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.isclickableinflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.onclick_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.onclick_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.onlocationchange_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.onlocationchange_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.setbubblevisible_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.setbubblevisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.sourceblock_property",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.sourceblock_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.type_property",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.updatecollapsed_1_method",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.updatecollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.mutatoricon_class.weight_property",
+ "id": "reference/js/blockly.icons_namespace.mutatoricon_class.weight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.registry_namespace",
+ "id": "reference/js/blockly.icons_namespace.registry_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.registry_namespace.register_1_function",
+ "id": "reference/js/blockly.icons_namespace.registry_namespace.register_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.registry_namespace.unregister_1_function",
+ "id": "reference/js/blockly.icons_namespace.registry_namespace.unregister_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.applycolour_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.applycolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.bubbleisvisible_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.bubbleisvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.dispose_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.getbubble_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.getbubble_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.getsize_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.getsize_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.gettype_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.gettype_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.getweight_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.getweight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.initview_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.initview_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.isclickableinflyout_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.isclickableinflyout_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.isshownwhencollapsed_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.isshownwhencollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.onclick_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.onclick_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.onlocationchange_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.onlocationchange_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.setbubblevisible_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.setbubblevisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.sourceblock_property",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.sourceblock_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.type_property",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.updatecollapsed_1_method",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.updatecollapsed_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icons_namespace.warningicon_class.weight_property",
+ "id": "reference/js/blockly.icons_namespace.warningicon_class.weight_property"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ICopyable",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.icopyable_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.icopyable_namespace.icopydata_interface",
+ "id": "reference/js/blockly.icopyable_namespace.icopydata_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.icopyable_namespace.icopydata_interface.paster_propertysignature",
+ "id": "reference/js/blockly.icopyable_namespace.icopydata_interface.paster_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "inputs",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.inputs_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.dummyinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.inputs_namespace.dummyinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.endrowinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.inputs_namespace.endrowinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class._constructor__1_constructor",
+ "id": "reference/js/blockly.inputs_namespace.input_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.statementinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.inputs_namespace.statementinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.valueinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.inputs_namespace.valueinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.align_enum",
+ "id": "reference/js/blockly.inputs_namespace.align_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.dummyinput_class",
+ "id": "reference/js/blockly.inputs_namespace.dummyinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.dummyinput_class.name_property",
+ "id": "reference/js/blockly.inputs_namespace.dummyinput_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.dummyinput_class.type_property",
+ "id": "reference/js/blockly.inputs_namespace.dummyinput_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.endrowinput_class",
+ "id": "reference/js/blockly.inputs_namespace.endrowinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.endrowinput_class.name_property",
+ "id": "reference/js/blockly.inputs_namespace.endrowinput_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.endrowinput_class.type_property",
+ "id": "reference/js/blockly.inputs_namespace.endrowinput_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class",
+ "id": "reference/js/blockly.inputs_namespace.input_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.align_property",
+ "id": "reference/js/blockly.inputs_namespace.input_class.align_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.appendfield_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.appendfield_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.connection_property",
+ "id": "reference/js/blockly.inputs_namespace.input_class.connection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.dispose_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.fieldrow_property",
+ "id": "reference/js/blockly.inputs_namespace.input_class.fieldrow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.getshadowdom_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.getshadowdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.getsourceblock_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.getsourceblock_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.init_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.insertfieldat_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.insertfieldat_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.isvisible_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.isvisible_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.makeconnection_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.makeconnection_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.name_property",
+ "id": "reference/js/blockly.inputs_namespace.input_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.removefield_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.removefield_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.setalign_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.setalign_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.setcheck_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.setcheck_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.setshadowdom_1_method",
+ "id": "reference/js/blockly.inputs_namespace.input_class.setshadowdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.input_class.type_property",
+ "id": "reference/js/blockly.inputs_namespace.input_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.inputtypes_enum",
+ "id": "reference/js/blockly.inputs_namespace.inputtypes_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.statementinput_class",
+ "id": "reference/js/blockly.inputs_namespace.statementinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.statementinput_class.connection_property",
+ "id": "reference/js/blockly.inputs_namespace.statementinput_class.connection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.statementinput_class.name_property",
+ "id": "reference/js/blockly.inputs_namespace.statementinput_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.statementinput_class.type_property",
+ "id": "reference/js/blockly.inputs_namespace.statementinput_class.type_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.valueinput_class",
+ "id": "reference/js/blockly.inputs_namespace.valueinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.valueinput_class.name_property",
+ "id": "reference/js/blockly.inputs_namespace.valueinput_class.name_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.inputs_namespace.valueinput_class.type_property",
+ "id": "reference/js/blockly.inputs_namespace.valueinput_class.type_property"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "layers",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.layers_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.layers_namespace.block_variable",
+ "id": "reference/js/blockly.layers_namespace.block_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.layers_namespace.bubble_variable",
+ "id": "reference/js/blockly.layers_namespace.bubble_variable"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "libraryBlocks",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.libraryblocks_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.blocks_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.blocks_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.colour_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.colour_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.lists_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.lists_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.logic_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.logic_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.loops_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.loops_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.math_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.math_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.procedures_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.procedures_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.texts_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.texts_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.variables_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.variables_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.libraryblocks_namespace.variablesdynamic_variable",
+ "id": "reference/js/blockly.libraryblocks_namespace.variablesdynamic_variable"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "MetricsManager",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.metricsmanager_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.absolutemetrics_interface",
+ "id": "reference/js/blockly.metricsmanager_namespace.absolutemetrics_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.absolutemetrics_interface.left_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.absolutemetrics_interface.left_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.absolutemetrics_interface.top_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.absolutemetrics_interface.top_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.containerregion_interface",
+ "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.containerregion_interface.height_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.containerregion_interface.left_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface.left_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.containerregion_interface.top_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface.top_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.containerregion_interface.width_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface.width_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.fixededges_interface",
+ "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.fixededges_interface.bottom_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface.bottom_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.fixededges_interface.left_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface.left_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.fixededges_interface.right_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface.right_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.fixededges_interface.top_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface.top_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.toolboxmetrics_interface",
+ "id": "reference/js/blockly.metricsmanager_namespace.toolboxmetrics_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.toolboxmetrics_interface.height_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.toolboxmetrics_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.toolboxmetrics_interface.position_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.toolboxmetrics_interface.position_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.toolboxmetrics_interface.width_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.toolboxmetrics_interface.width_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.uimetrics_interface",
+ "id": "reference/js/blockly.metricsmanager_namespace.uimetrics_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.uimetrics_interface.absolutemetrics_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.uimetrics_interface.absolutemetrics_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.uimetrics_interface.toolboxmetrics_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.uimetrics_interface.toolboxmetrics_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.metricsmanager_namespace.uimetrics_interface.viewmetrics_propertysignature",
+ "id": "reference/js/blockly.metricsmanager_namespace.uimetrics_interface.viewmetrics_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Names",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.names_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.names_namespace.nametype_enum",
+ "id": "reference/js/blockly.names_namespace.nametype_enum"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Options",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.options_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.gridoptions_interface",
+ "id": "reference/js/blockly.options_namespace.gridoptions_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.gridoptions_interface.colour_propertysignature",
+ "id": "reference/js/blockly.options_namespace.gridoptions_interface.colour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.gridoptions_interface.length_propertysignature",
+ "id": "reference/js/blockly.options_namespace.gridoptions_interface.length_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.gridoptions_interface.snap_propertysignature",
+ "id": "reference/js/blockly.options_namespace.gridoptions_interface.snap_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.gridoptions_interface.spacing_propertysignature",
+ "id": "reference/js/blockly.options_namespace.gridoptions_interface.spacing_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.moveoptions_interface",
+ "id": "reference/js/blockly.options_namespace.moveoptions_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.moveoptions_interface.drag_propertysignature",
+ "id": "reference/js/blockly.options_namespace.moveoptions_interface.drag_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.moveoptions_interface.scrollbars_propertysignature",
+ "id": "reference/js/blockly.options_namespace.moveoptions_interface.scrollbars_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.moveoptions_interface.wheel_propertysignature",
+ "id": "reference/js/blockly.options_namespace.moveoptions_interface.wheel_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.scrollbaroptions_interface",
+ "id": "reference/js/blockly.options_namespace.scrollbaroptions_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.scrollbaroptions_interface.horizontal_propertysignature",
+ "id": "reference/js/blockly.options_namespace.scrollbaroptions_interface.horizontal_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.scrollbaroptions_interface.vertical_propertysignature",
+ "id": "reference/js/blockly.options_namespace.scrollbaroptions_interface.vertical_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.zoomoptions_interface",
+ "id": "reference/js/blockly.options_namespace.zoomoptions_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.zoomoptions_interface.controls_propertysignature",
+ "id": "reference/js/blockly.options_namespace.zoomoptions_interface.controls_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.zoomoptions_interface.maxscale_propertysignature",
+ "id": "reference/js/blockly.options_namespace.zoomoptions_interface.maxscale_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.zoomoptions_interface.minscale_propertysignature",
+ "id": "reference/js/blockly.options_namespace.zoomoptions_interface.minscale_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.zoomoptions_interface.pinch_propertysignature",
+ "id": "reference/js/blockly.options_namespace.zoomoptions_interface.pinch_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.zoomoptions_interface.scalespeed_propertysignature",
+ "id": "reference/js/blockly.options_namespace.zoomoptions_interface.scalespeed_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.zoomoptions_interface.startscale_propertysignature",
+ "id": "reference/js/blockly.options_namespace.zoomoptions_interface.startscale_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.options_namespace.zoomoptions_interface.wheel_propertysignature",
+ "id": "reference/js/blockly.options_namespace.zoomoptions_interface.wheel_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Procedures",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.procedures_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.allprocedures_1_function",
+ "id": "reference/js/blockly.procedures_namespace.allprocedures_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.category_name_variable",
+ "id": "reference/js/blockly.procedures_namespace.category_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.default_arg_variable",
+ "id": "reference/js/blockly.procedures_namespace.default_arg_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.findlegalname_1_function",
+ "id": "reference/js/blockly.procedures_namespace.findlegalname_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.flyoutcategory_1_function",
+ "id": "reference/js/blockly.procedures_namespace.flyoutcategory_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.flyoutcategory_2_function",
+ "id": "reference/js/blockly.procedures_namespace.flyoutcategory_2_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.getcallers_1_function",
+ "id": "reference/js/blockly.procedures_namespace.getcallers_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.getdefinition_1_function",
+ "id": "reference/js/blockly.procedures_namespace.getdefinition_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iparametermodel_interface",
+ "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iparametermodel_interface.getid_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.getid_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iparametermodel_interface.getname_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.getname_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iparametermodel_interface.gettypes_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.gettypes_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iparametermodel_interface.savestate_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.savestate_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iparametermodel_interface.setname_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.setname_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iparametermodel_interface.setproceduremodel_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.setproceduremodel_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iparametermodel_interface.settypes_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.settypes_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iprocedureblock_interface",
+ "id": "reference/js/blockly.procedures_namespace.iprocedureblock_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iprocedureblock_interface.doprocedureupdate_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iprocedureblock_interface.doprocedureupdate_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iprocedureblock_interface.getproceduremodel_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iprocedureblock_interface.getproceduremodel_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iprocedureblock_interface.isproceduredef_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iprocedureblock_interface.isproceduredef_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremap_interface",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremap_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremap_interface.add_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremap_interface.add_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremap_interface.getprocedures_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremap_interface.getprocedures_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.deleteparameter_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.deleteparameter_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.getenabled_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getenabled_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.getid_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getid_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.getname_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getname_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.getparameter_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getparameter_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.getparameters_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getparameters_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.getreturntypes_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getreturntypes_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.insertparameter_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.insertparameter_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.savestate_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.savestate_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.setenabled_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.setenabled_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.setname_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.setname_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.iproceduremodel_interface.setreturntypes_1_methodsignature",
+ "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.setreturntypes_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.isnameused_1_function",
+ "id": "reference/js/blockly.procedures_namespace.isnameused_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.isprocedureblock_1_function",
+ "id": "reference/js/blockly.procedures_namespace.isprocedureblock_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.mutatecallers_1_function",
+ "id": "reference/js/blockly.procedures_namespace.mutatecallers_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.observableproceduremap_class",
+ "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.observableproceduremap_class.add_1_method",
+ "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.add_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.observableproceduremap_class.clear_1_method",
+ "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.clear_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.observableproceduremap_class.delete_1_method",
+ "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.delete_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.observableproceduremap_class.getprocedures_1_method",
+ "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.getprocedures_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.observableproceduremap_class.set_1_method",
+ "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.set_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.proceduretuple_typealias",
+ "id": "reference/js/blockly.procedures_namespace.proceduretuple_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.procedures_namespace.rename_1_function",
+ "id": "reference/js/blockly.procedures_namespace.rename_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "registry",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.registry_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class._constructor__1_constructor",
+ "id": "reference/js/blockly.registry_namespace.type_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.default_variable",
+ "id": "reference/js/blockly.registry_namespace.default_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.getallitems_1_function",
+ "id": "reference/js/blockly.registry_namespace.getallitems_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.getclass_1_function",
+ "id": "reference/js/blockly.registry_namespace.getclass_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.getclassfromoptions_1_function",
+ "id": "reference/js/blockly.registry_namespace.getclassfromoptions_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.getobject_1_function",
+ "id": "reference/js/blockly.registry_namespace.getobject_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.hasitem_1_function",
+ "id": "reference/js/blockly.registry_namespace.hasitem_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.register_1_function",
+ "id": "reference/js/blockly.registry_namespace.register_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.test_only_variable",
+ "id": "reference/js/blockly.registry_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class",
+ "id": "reference/js/blockly.registry_namespace.type_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.block_dragger_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.block_dragger_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.connection_checker_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.connection_checker_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.connection_previewer_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.connection_previewer_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.cursor_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.cursor_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.event_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.event_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.field_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.field_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.flyout_inflater_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.flyout_inflater_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.flyouts_horizontal_toolbox_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.flyouts_horizontal_toolbox_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.flyouts_vertical_toolbox_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.flyouts_vertical_toolbox_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.input_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.input_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.metrics_manager_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.metrics_manager_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.renderer_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.renderer_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.theme_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.theme_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.toolbox_item_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.toolbox_item_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.toolbox_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.toolbox_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.tostring_1_method",
+ "id": "reference/js/blockly.registry_namespace.type_class.tostring_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.variable_map_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.variable_map_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.type_class.variable_model_property",
+ "id": "reference/js/blockly.registry_namespace.type_class.variable_model_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.registry_namespace.unregister_1_function",
+ "id": "reference/js/blockly.registry_namespace.unregister_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "RenderedConnection",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.renderedconnection_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.renderedconnection_namespace.trackedstate_enum",
+ "id": "reference/js/blockly.renderedconnection_namespace.trackedstate_enum"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "renderManagement",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.rendermanagement_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.rendermanagement_namespace.finishqueuedrenders_1_function",
+ "id": "reference/js/blockly.rendermanagement_namespace.finishqueuedrenders_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "serialization",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.serialization_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class._constructor__1_constructor",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.append_1_function",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.append_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class.clear_1_method",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class.clear_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class.load_1_method",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class.load_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class.priority_property",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class.priority_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class.save_1_method",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class.save_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.connectionstate_interface",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.connectionstate_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.connectionstate_interface.block_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.connectionstate_interface.block_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.connectionstate_interface.shadow_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.connectionstate_interface.shadow_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.save_1_function",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.save_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.collapsed_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.collapsed_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.data_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.data_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.deletable_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.deletable_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.disabledreasons_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.disabledreasons_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.editable_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.editable_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.enabled_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.enabled_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.extrastate_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.extrastate_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.fields_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.fields_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.icons_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.icons_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.id_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.inline_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.inline_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.inputs_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.inputs_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.movable_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.movable_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.next_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.next_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.type_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.type_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.x_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.x_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.blocks_namespace.state_interface.y_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.y_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class.childblock_property",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class.childblock_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class.childstate_property",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class.childstate_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.deserializationerror_class",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.deserializationerror_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.missingblocktype_class",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingblocktype_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.missingblocktype_class.state_property",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingblocktype_class.state_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.missingconnection_class",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingconnection_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.missingconnection_class.block_property",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingconnection_class.block_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.missingconnection_class.state_property",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingconnection_class.state_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.realchildofshadow_class",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.realchildofshadow_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.realchildofshadow_class.state_property",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.realchildofshadow_class.state_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class.block_property",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class.block_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class.state_property",
+ "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class.state_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.iserializer_interface",
+ "id": "reference/js/blockly.serialization_namespace.iserializer_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.iserializer_interface.clear_1_methodsignature",
+ "id": "reference/js/blockly.serialization_namespace.iserializer_interface.clear_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.iserializer_interface.load_1_methodsignature",
+ "id": "reference/js/blockly.serialization_namespace.iserializer_interface.load_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.iserializer_interface.priority_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.iserializer_interface.priority_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.iserializer_interface.save_1_methodsignature",
+ "id": "reference/js/blockly.serialization_namespace.iserializer_interface.save_1_methodsignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.priorities_namespace",
+ "id": "reference/js/blockly.serialization_namespace.priorities_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.priorities_namespace.blocks_variable",
+ "id": "reference/js/blockly.serialization_namespace.priorities_namespace.blocks_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.priorities_namespace.procedures_variable",
+ "id": "reference/js/blockly.serialization_namespace.priorities_namespace.procedures_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.priorities_namespace.variables_variable",
+ "id": "reference/js/blockly.serialization_namespace.priorities_namespace.variables_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.priorities_namespace.workspace_comments_variable",
+ "id": "reference/js/blockly.serialization_namespace.priorities_namespace.workspace_comments_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.loadprocedure_1_function",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.loadprocedure_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.parameterstate_interface",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.parameterstate_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.parameterstate_interface.id_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.parameterstate_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.parameterstate_interface.name_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.parameterstate_interface.name_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.parameterstate_interface.types_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.parameterstate_interface.types_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class.clear_1_method",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class.clear_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class.load_1_method",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class.load_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class.priority_property",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class.priority_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class.save_1_method",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class.save_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.saveprocedure_1_function",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.saveprocedure_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.state_interface",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.state_interface.id_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.state_interface.name_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface.name_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.state_interface.parameters_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface.parameters_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.procedures_namespace.state_interface.returntypes_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface.returntypes_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.registry_namespace",
+ "id": "reference/js/blockly.serialization_namespace.registry_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.registry_namespace.register_1_function",
+ "id": "reference/js/blockly.serialization_namespace.registry_namespace.register_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.registry_namespace.unregister_1_function",
+ "id": "reference/js/blockly.serialization_namespace.registry_namespace.unregister_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.variables_namespace",
+ "id": "reference/js/blockly.serialization_namespace.variables_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class",
+ "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class.clear_1_method",
+ "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class.clear_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class.load_1_method",
+ "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class.load_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class.priority_property",
+ "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class.priority_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class.save_1_method",
+ "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class.save_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.append_1_function",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.append_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.save_1_function",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.save_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.collapsed_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.collapsed_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.deletable_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.deletable_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.editable_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.editable_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.height_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.height_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.id_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.movable_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.movable_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.text_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.text_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.width_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.width_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.x_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.x_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.y_propertysignature",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.y_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.clear_1_method",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.clear_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.load_1_method",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.load_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.priority_property",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.priority_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.save_1_method",
+ "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.save_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspaces_namespace",
+ "id": "reference/js/blockly.serialization_namespace.workspaces_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspaces_namespace.load_1_function",
+ "id": "reference/js/blockly.serialization_namespace.workspaces_namespace.load_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.serialization_namespace.workspaces_namespace.save_1_function",
+ "id": "reference/js/blockly.serialization_namespace.workspaces_namespace.save_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ShortcutItems",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.shortcutitems_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.shortcutitems_namespace.names_enum",
+ "id": "reference/js/blockly.shortcutitems_namespace.names_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutitems_namespace.registercopy_1_function",
+ "id": "reference/js/blockly.shortcutitems_namespace.registercopy_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutitems_namespace.registercut_1_function",
+ "id": "reference/js/blockly.shortcutitems_namespace.registercut_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutitems_namespace.registerdelete_1_function",
+ "id": "reference/js/blockly.shortcutitems_namespace.registerdelete_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutitems_namespace.registerescape_1_function",
+ "id": "reference/js/blockly.shortcutitems_namespace.registerescape_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutitems_namespace.registerpaste_1_function",
+ "id": "reference/js/blockly.shortcutitems_namespace.registerpaste_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutitems_namespace.registerredo_1_function",
+ "id": "reference/js/blockly.shortcutitems_namespace.registerredo_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutitems_namespace.registerundo_1_function",
+ "id": "reference/js/blockly.shortcutitems_namespace.registerundo_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ShortcutRegistry",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.shortcutregistry_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface",
+ "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.allowcollision_propertysignature",
+ "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.allowcollision_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.callback_propertysignature",
+ "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.callback_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.keycodes_propertysignature",
+ "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.keycodes_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.metadata_propertysignature",
+ "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.metadata_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.name_propertysignature",
+ "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.name_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.preconditionfn_propertysignature",
+ "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.preconditionfn_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.shortcutregistry_namespace.modifierkeys_enum",
+ "id": "reference/js/blockly.shortcutregistry_namespace.modifierkeys_enum"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Theme",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.theme_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.blockstyle_interface",
+ "id": "reference/js/blockly.theme_namespace.blockstyle_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.blockstyle_interface.colourprimary_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.blockstyle_interface.colourprimary_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.blockstyle_interface.coloursecondary_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.blockstyle_interface.coloursecondary_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.blockstyle_interface.colourtertiary_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.blockstyle_interface.colourtertiary_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.blockstyle_interface.hat_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.blockstyle_interface.hat_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.categorystyle_interface",
+ "id": "reference/js/blockly.theme_namespace.categorystyle_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.categorystyle_interface.colour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.categorystyle_interface.colour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.cursorcolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.cursorcolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.flyoutbackgroundcolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.flyoutbackgroundcolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.flyoutforegroundcolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.flyoutforegroundcolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.flyoutopacity_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.flyoutopacity_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.insertionmarkercolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.insertionmarkercolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.insertionmarkeropacity_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.insertionmarkeropacity_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.markercolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.markercolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.replacementglowcolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.replacementglowcolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.replacementglowopacity_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.replacementglowopacity_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.scrollbarcolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.scrollbarcolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.scrollbaropacity_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.scrollbaropacity_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.selectedglowcolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.selectedglowcolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.selectedglowopacity_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.selectedglowopacity_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.toolboxbackgroundcolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.toolboxbackgroundcolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.toolboxforegroundcolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.toolboxforegroundcolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.componentstyle_interface.workspacebackgroundcolour_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.componentstyle_interface.workspacebackgroundcolour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.fontstyle_interface",
+ "id": "reference/js/blockly.theme_namespace.fontstyle_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.fontstyle_interface.family_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.fontstyle_interface.family_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.fontstyle_interface.size_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.fontstyle_interface.size_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.theme_namespace.fontstyle_interface.weight_propertysignature",
+ "id": "reference/js/blockly.theme_namespace.fontstyle_interface.weight_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ThemeManager",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.thememanager_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.thememanager_namespace.component_interface",
+ "id": "reference/js/blockly.thememanager_namespace.component_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thememanager_namespace.component_interface.element_propertysignature",
+ "id": "reference/js/blockly.thememanager_namespace.component_interface.element_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thememanager_namespace.component_interface.propertyname_propertysignature",
+ "id": "reference/js/blockly.thememanager_namespace.component_interface.propertyname_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Themes",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.themes_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.themes_namespace.classic_variable",
+ "id": "reference/js/blockly.themes_namespace.classic_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.themes_namespace.zelos_variable",
+ "id": "reference/js/blockly.themes_namespace.zelos_variable"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "thrasos",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.thrasos_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.thrasos_namespace.renderer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderinfo_class._constructor__1_constructor",
+ "id": "reference/js/blockly.thrasos_namespace.renderinfo_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderer_class",
+ "id": "reference/js/blockly.thrasos_namespace.renderer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderer_class.makerenderinfo__1_method",
+ "id": "reference/js/blockly.thrasos_namespace.renderer_class.makerenderinfo__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderinfo_class",
+ "id": "reference/js/blockly.thrasos_namespace.renderinfo_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderinfo_class.addelemspacing__1_method",
+ "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.addelemspacing__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderinfo_class.finalize__1_method",
+ "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.finalize__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderinfo_class.getelemcenterline__1_method",
+ "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.getelemcenterline__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderinfo_class.getinrowspacing__1_method",
+ "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.getinrowspacing__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderinfo_class.getrenderer_1_method",
+ "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.getrenderer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderinfo_class.getspacerrowheight__1_method",
+ "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.getspacerrowheight__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.thrasos_namespace.renderinfo_class.renderer__property",
+ "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.renderer__property"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Toast",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.toast_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.toast_namespace.assertiveness_enum",
+ "id": "reference/js/blockly.toast_namespace.assertiveness_enum"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ToolboxCategory",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.toolboxcategory_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface.closedicon_propertysignature",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.closedicon_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface.container_propertysignature",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.container_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface.contents_propertysignature",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.contents_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface.icon_propertysignature",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.icon_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface.label_propertysignature",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.label_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface.openicon_propertysignature",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.openicon_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface.row_propertysignature",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.row_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface.rowcontentcontainer_propertysignature",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.rowcontentcontainer_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxcategory_namespace.cssconfig_interface.selected_propertysignature",
+ "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.selected_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "ToolboxSeparator",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.toolboxseparator_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.toolboxseparator_namespace.cssconfig_interface",
+ "id": "reference/js/blockly.toolboxseparator_namespace.cssconfig_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.toolboxseparator_namespace.cssconfig_interface.container_propertysignature",
+ "id": "reference/js/blockly.toolboxseparator_namespace.cssconfig_interface.container_propertysignature"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Tooltip",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.tooltip_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.bindmouseevents_1_function",
+ "id": "reference/js/blockly.tooltip_namespace.bindmouseevents_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.createdom_1_function",
+ "id": "reference/js/blockly.tooltip_namespace.createdom_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.customtooltip_typealias",
+ "id": "reference/js/blockly.tooltip_namespace.customtooltip_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.getcustomtooltip_1_function",
+ "id": "reference/js/blockly.tooltip_namespace.getcustomtooltip_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.getdiv_1_function",
+ "id": "reference/js/blockly.tooltip_namespace.getdiv_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.gettooltipofobject_1_function",
+ "id": "reference/js/blockly.tooltip_namespace.gettooltipofobject_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.hide_1_function",
+ "id": "reference/js/blockly.tooltip_namespace.hide_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.hover_ms_variable",
+ "id": "reference/js/blockly.tooltip_namespace.hover_ms_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.isvisible_1_function",
+ "id": "reference/js/blockly.tooltip_namespace.isvisible_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.limit_variable",
+ "id": "reference/js/blockly.tooltip_namespace.limit_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.margins_variable",
+ "id": "reference/js/blockly.tooltip_namespace.margins_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.offset_x_variable",
+ "id": "reference/js/blockly.tooltip_namespace.offset_x_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.offset_y_variable",
+ "id": "reference/js/blockly.tooltip_namespace.offset_y_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.radius_ok_variable",
+ "id": "reference/js/blockly.tooltip_namespace.radius_ok_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.setcustomtooltip_1_function",
+ "id": "reference/js/blockly.tooltip_namespace.setcustomtooltip_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.tipinfo_typealias",
+ "id": "reference/js/blockly.tooltip_namespace.tipinfo_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.tooltip_namespace.unbindmouseevents_1_function",
+ "id": "reference/js/blockly.tooltip_namespace.unbindmouseevents_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Touch",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.touch_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.touch_namespace.checktouchidentifier_1_function",
+ "id": "reference/js/blockly.touch_namespace.checktouchidentifier_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.touch_namespace.cleartouchidentifier_1_function",
+ "id": "reference/js/blockly.touch_namespace.cleartouchidentifier_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.touch_namespace.gettouchidentifierfromevent_1_function",
+ "id": "reference/js/blockly.touch_namespace.gettouchidentifierfromevent_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.touch_namespace.shouldhandleevent_1_function",
+ "id": "reference/js/blockly.touch_namespace.shouldhandleevent_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.touch_namespace.touch_enabled_variable",
+ "id": "reference/js/blockly.touch_namespace.touch_enabled_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.touch_namespace.touch_map_variable",
+ "id": "reference/js/blockly.touch_namespace.touch_map_variable"
+ },
+ ],
+ },
+ {
+ "type": "doc",
+ "label": "uiPosition",
+ "id": "reference/js/blockly.uiposition_namespace"
+ },
+ {
+ "type": "category",
+ "label": "utils",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.utils_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class._constructor__1_constructor",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class._constructor__1_constructor",
+ "id": "reference/js/blockly.utils_namespace.rect_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.size_class._constructor__1_constructor",
+ "id": "reference/js/blockly.utils_namespace.size_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.aria_namespace",
+ "id": "reference/js/blockly.utils_namespace.aria_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.aria_namespace.role_enum",
+ "id": "reference/js/blockly.utils_namespace.aria_namespace.role_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.aria_namespace.setrole_1_function",
+ "id": "reference/js/blockly.utils_namespace.aria_namespace.setrole_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.aria_namespace.setstate_1_function",
+ "id": "reference/js/blockly.utils_namespace.aria_namespace.setstate_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.aria_namespace.state_enum",
+ "id": "reference/js/blockly.utils_namespace.aria_namespace.state_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.array_namespace",
+ "id": "reference/js/blockly.utils_namespace.array_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.browserevents_namespace",
+ "id": "reference/js/blockly.utils_namespace.browserevents_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.browserevents_namespace.bind_1_function",
+ "id": "reference/js/blockly.utils_namespace.browserevents_namespace.bind_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.browserevents_namespace.conditionalbind_1_function",
+ "id": "reference/js/blockly.utils_namespace.browserevents_namespace.conditionalbind_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.browserevents_namespace.data_typealias",
+ "id": "reference/js/blockly.utils_namespace.browserevents_namespace.data_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.browserevents_namespace.getscrolldeltapixels_1_function",
+ "id": "reference/js/blockly.utils_namespace.browserevents_namespace.getscrolldeltapixels_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.browserevents_namespace.isrightbutton_1_function",
+ "id": "reference/js/blockly.utils_namespace.browserevents_namespace.isrightbutton_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.browserevents_namespace.istargetinput_1_function",
+ "id": "reference/js/blockly.utils_namespace.browserevents_namespace.istargetinput_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.browserevents_namespace.mousetosvg_1_function",
+ "id": "reference/js/blockly.utils_namespace.browserevents_namespace.mousetosvg_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.browserevents_namespace.unbind_1_function",
+ "id": "reference/js/blockly.utils_namespace.browserevents_namespace.unbind_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.colour_namespace",
+ "id": "reference/js/blockly.utils_namespace.colour_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.colour_namespace.blend_1_function",
+ "id": "reference/js/blockly.utils_namespace.colour_namespace.blend_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.colour_namespace.hextorgb_1_function",
+ "id": "reference/js/blockly.utils_namespace.colour_namespace.hextorgb_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.colour_namespace.hsvtohex_1_function",
+ "id": "reference/js/blockly.utils_namespace.colour_namespace.hsvtohex_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.colour_namespace.huetohex_1_function",
+ "id": "reference/js/blockly.utils_namespace.colour_namespace.huetohex_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.colour_namespace.names_variable",
+ "id": "reference/js/blockly.utils_namespace.colour_namespace.names_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.colour_namespace.parse_1_function",
+ "id": "reference/js/blockly.utils_namespace.colour_namespace.parse_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.colour_namespace.rgbtohex_1_function",
+ "id": "reference/js/blockly.utils_namespace.colour_namespace.rgbtohex_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.clone_1_method",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.clone_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.difference_1_method",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.difference_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.distance_1_method",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.distance_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.equals_1_method",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.equals_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.magnitude_1_method",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.magnitude_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.scale_1_method",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.scale_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.sum_1_method",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.sum_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.translate_1_method",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.translate_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.x_property",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.x_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.coordinate_class.y_property",
+ "id": "reference/js/blockly.utils_namespace.coordinate_class.y_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.deprecation_namespace",
+ "id": "reference/js/blockly.utils_namespace.deprecation_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.addclass_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.addclass_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.createsvgelement_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.createsvgelement_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.getfasttextwidth_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.getfasttextwidth_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.getfasttextwidthwithsizestring_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.getfasttextwidthwithsizestring_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.gettextwidth_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.gettextwidth_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.hasclass_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.hasclass_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.html_ns_variable",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.html_ns_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.insertafter_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.insertafter_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.measurefontmetrics_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.measurefontmetrics_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.nodetype_enum",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.nodetype_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.removeclass_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.removeclass_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.removeclasses_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.removeclasses_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.removenode_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.removenode_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.setcsstransform_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.setcsstransform_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.starttextwidthcache_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.starttextwidthcache_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.stoptextwidthcache_1_function",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.stoptextwidthcache_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.svg_ns_variable",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.svg_ns_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.dom_namespace.xlink_ns_variable",
+ "id": "reference/js/blockly.utils_namespace.dom_namespace.xlink_ns_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace.apply_1_function",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace.apply_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace.buildtooltipfordropdown_1_function",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace.buildtooltipfordropdown_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace.buildtooltipwithfieldtext_1_function",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace.buildtooltipwithfieldtext_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace.isregistered_1_function",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace.isregistered_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace.register_1_function",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace.register_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace.registermixin_1_function",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace.registermixin_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace.registermutator_1_function",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace.registermutator_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace.test_only_variable",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.extensions_namespace.unregister_1_function",
+ "id": "reference/js/blockly.utils_namespace.extensions_namespace.unregister_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.idgenerator_namespace",
+ "id": "reference/js/blockly.utils_namespace.idgenerator_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.idgenerator_namespace.genuid_1_function",
+ "id": "reference/js/blockly.utils_namespace.idgenerator_namespace.genuid_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.idgenerator_namespace.getnextuniqueid_1_function",
+ "id": "reference/js/blockly.utils_namespace.idgenerator_namespace.getnextuniqueid_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.idgenerator_namespace.test_only_variable",
+ "id": "reference/js/blockly.utils_namespace.idgenerator_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.keycodes_enum",
+ "id": "reference/js/blockly.utils_namespace.keycodes_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.math_namespace",
+ "id": "reference/js/blockly.utils_namespace.math_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.math_namespace.clamp_1_function",
+ "id": "reference/js/blockly.utils_namespace.math_namespace.clamp_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.math_namespace.todegrees_1_function",
+ "id": "reference/js/blockly.utils_namespace.math_namespace.todegrees_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.math_namespace.toradians_1_function",
+ "id": "reference/js/blockly.utils_namespace.math_namespace.toradians_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.absoluteleft_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.absoluteleft_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.absolutetop_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.absolutetop_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.contentheight_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.contentheight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.contentleft_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.contentleft_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.contenttop_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.contenttop_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.contentwidth_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.contentwidth_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.flyoutheight_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.flyoutheight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.flyoutwidth_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.flyoutwidth_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.scrollheight_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.scrollheight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.scrollleft_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.scrollleft_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.scrolltop_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.scrolltop_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.scrollwidth_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.scrollwidth_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.svgheight_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.svgheight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.svgwidth_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.svgwidth_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.toolboxheight_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.toolboxheight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.toolboxposition_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.toolboxposition_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.toolboxwidth_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.toolboxwidth_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.viewheight_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.viewheight_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.viewleft_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.viewleft_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.viewtop_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.viewtop_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.metrics_interface.viewwidth_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.metrics_interface.viewwidth_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.object_namespace",
+ "id": "reference/js/blockly.utils_namespace.object_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.object_namespace.deepmerge_1_function",
+ "id": "reference/js/blockly.utils_namespace.object_namespace.deepmerge_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.parsing_namespace",
+ "id": "reference/js/blockly.utils_namespace.parsing_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.parsing_namespace.checkmessagereferences_1_function",
+ "id": "reference/js/blockly.utils_namespace.parsing_namespace.checkmessagereferences_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.parsing_namespace.parseblockcolour_1_function",
+ "id": "reference/js/blockly.utils_namespace.parsing_namespace.parseblockcolour_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.parsing_namespace.replacemessagereferences_1_function",
+ "id": "reference/js/blockly.utils_namespace.parsing_namespace.replacemessagereferences_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.parsing_namespace.tokenizeinterpolation_1_function",
+ "id": "reference/js/blockly.utils_namespace.parsing_namespace.tokenizeinterpolation_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class",
+ "id": "reference/js/blockly.utils_namespace.rect_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.bottom_property",
+ "id": "reference/js/blockly.utils_namespace.rect_class.bottom_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.clone_1_method",
+ "id": "reference/js/blockly.utils_namespace.rect_class.clone_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.contains_1_method",
+ "id": "reference/js/blockly.utils_namespace.rect_class.contains_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.createfrompoint_1_method",
+ "id": "reference/js/blockly.utils_namespace.rect_class.createfrompoint_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.equals_1_method",
+ "id": "reference/js/blockly.utils_namespace.rect_class.equals_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.from_1_method",
+ "id": "reference/js/blockly.utils_namespace.rect_class.from_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.getheight_1_method",
+ "id": "reference/js/blockly.utils_namespace.rect_class.getheight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.getorigin_1_method",
+ "id": "reference/js/blockly.utils_namespace.rect_class.getorigin_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.getwidth_1_method",
+ "id": "reference/js/blockly.utils_namespace.rect_class.getwidth_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.intersects_1_method",
+ "id": "reference/js/blockly.utils_namespace.rect_class.intersects_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.left_property",
+ "id": "reference/js/blockly.utils_namespace.rect_class.left_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.right_property",
+ "id": "reference/js/blockly.utils_namespace.rect_class.right_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.rect_class.top_property",
+ "id": "reference/js/blockly.utils_namespace.rect_class.top_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.size_class",
+ "id": "reference/js/blockly.utils_namespace.size_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.size_class.equals_1_method",
+ "id": "reference/js/blockly.utils_namespace.size_class.equals_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.size_class.height_property",
+ "id": "reference/js/blockly.utils_namespace.size_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.size_class.max_1_method",
+ "id": "reference/js/blockly.utils_namespace.size_class.max_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.size_class.min_1_method",
+ "id": "reference/js/blockly.utils_namespace.size_class.min_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.size_class.width_property",
+ "id": "reference/js/blockly.utils_namespace.size_class.width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.string_namespace",
+ "id": "reference/js/blockly.utils_namespace.string_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.string_namespace.commonwordprefix_1_function",
+ "id": "reference/js/blockly.utils_namespace.string_namespace.commonwordprefix_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.string_namespace.commonwordsuffix_1_function",
+ "id": "reference/js/blockly.utils_namespace.string_namespace.commonwordsuffix_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.string_namespace.isnumber_1_function",
+ "id": "reference/js/blockly.utils_namespace.string_namespace.isnumber_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.string_namespace.shorteststringlength_1_function",
+ "id": "reference/js/blockly.utils_namespace.string_namespace.shorteststringlength_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.string_namespace.wrap_1_function",
+ "id": "reference/js/blockly.utils_namespace.string_namespace.wrap_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.style_namespace",
+ "id": "reference/js/blockly.utils_namespace.style_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.style_namespace.getborderbox_1_function",
+ "id": "reference/js/blockly.utils_namespace.style_namespace.getborderbox_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.style_namespace.getcomputedstyle_1_function",
+ "id": "reference/js/blockly.utils_namespace.style_namespace.getcomputedstyle_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.style_namespace.getcontaineroffsettoscrollinto_1_function",
+ "id": "reference/js/blockly.utils_namespace.style_namespace.getcontaineroffsettoscrollinto_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.style_namespace.getpageoffset_1_function",
+ "id": "reference/js/blockly.utils_namespace.style_namespace.getpageoffset_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.style_namespace.getsize_1_function",
+ "id": "reference/js/blockly.utils_namespace.style_namespace.getsize_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.style_namespace.getviewportpageoffset_1_function",
+ "id": "reference/js/blockly.utils_namespace.style_namespace.getviewportpageoffset_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.style_namespace.scrollintocontainerview_1_function",
+ "id": "reference/js/blockly.utils_namespace.style_namespace.scrollintocontainerview_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.style_namespace.test_only_variable",
+ "id": "reference/js/blockly.utils_namespace.style_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svg_class",
+ "id": "reference/js/blockly.utils_namespace.svg_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svg_class.tostring_1_method",
+ "id": "reference/js/blockly.utils_namespace.svg_class.tostring_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgmath_namespace",
+ "id": "reference/js/blockly.utils_namespace.svgmath_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgmath_namespace.getdocumentscroll_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgmath_namespace.getdocumentscroll_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgmath_namespace.getinjectiondivxy_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgmath_namespace.getinjectiondivxy_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgmath_namespace.getrelativexy_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgmath_namespace.getrelativexy_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgmath_namespace.screentowscoordinates_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgmath_namespace.screentowscoordinates_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgmath_namespace.test_only_variable",
+ "id": "reference/js/blockly.utils_namespace.svgmath_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgmath_namespace.wstoscreencoordinates_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgmath_namespace.wstoscreencoordinates_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgpaths_namespace",
+ "id": "reference/js/blockly.utils_namespace.svgpaths_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgpaths_namespace.arc_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.arc_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgpaths_namespace.curve_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.curve_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgpaths_namespace.line_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.line_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgpaths_namespace.lineonaxis_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.lineonaxis_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgpaths_namespace.lineto_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.lineto_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgpaths_namespace.moveby_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.moveby_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgpaths_namespace.moveto_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.moveto_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.svgpaths_namespace.point_1_function",
+ "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.point_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.blockxml_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.blockxml_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.collapsed_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.collapsed_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.data_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.data_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.disabled_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.disabled_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.disabledreasons_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.disabledreasons_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.enabled_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.enabled_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.extrastate_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.extrastate_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.fields_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.fields_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.gap_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.gap_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.icons_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.icons_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.id_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.inline_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.inline_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.inputs_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.inputs_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.kind_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.kind_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.next_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.next_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.type_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.type_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.buttoninfo_interface",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttoninfo_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.callbackkey_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.callbackkey_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.kind_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.kind_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.text_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.text_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.buttonorlabelinfo_typealias",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttonorlabelinfo_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.categoryinfo_typealias",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.categoryinfo_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.categorystyle_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.categorystyle_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.colour_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.colour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.cssconfig_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.cssconfig_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.custom_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.custom_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.expanded_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.expanded_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.hidden_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.hidden_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.id_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.kind_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.kind_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.flyoutdefinition_typealias",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.flyoutdefinition_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.flyoutiteminfo_typealias",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.flyoutiteminfo_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.flyoutiteminfoarray_typealias",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.flyoutiteminfoarray_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.labelinfo_interface",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.labelinfo_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.labelinfo_interface.id_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.labelinfo_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.labelinfo_interface.kind_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.labelinfo_interface.kind_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.labelinfo_interface.text_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.labelinfo_interface.text_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.parsetoolboxtree_1_function",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.parsetoolboxtree_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.position_enum",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.position_enum"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.cssconfig_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.cssconfig_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.gap_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.gap_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.id_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.kind_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.kind_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.categorystyle_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.categorystyle_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.colour_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.colour_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.contents_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.contents_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.cssconfig_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.cssconfig_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.expanded_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.expanded_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.hidden_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.hidden_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.id_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.id_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.kind_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.kind_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.name_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.name_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.test_only_variable",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.toolboxdefinition_typealias",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxdefinition_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface.contents_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface.contents_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface.kind_propertysignature",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface.kind_propertysignature"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.toolbox_namespace.toolboxiteminfo_typealias",
+ "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxiteminfo_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.useragent_namespace",
+ "id": "reference/js/blockly.utils_namespace.useragent_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.useragent_namespace.android_variable",
+ "id": "reference/js/blockly.utils_namespace.useragent_namespace.android_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.useragent_namespace.gecko_variable",
+ "id": "reference/js/blockly.utils_namespace.useragent_namespace.gecko_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.useragent_namespace.ipad_variable",
+ "id": "reference/js/blockly.utils_namespace.useragent_namespace.ipad_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.useragent_namespace.iphone_variable",
+ "id": "reference/js/blockly.utils_namespace.useragent_namespace.iphone_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.useragent_namespace.javafx_variable",
+ "id": "reference/js/blockly.utils_namespace.useragent_namespace.javafx_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.useragent_namespace.mac_variable",
+ "id": "reference/js/blockly.utils_namespace.useragent_namespace.mac_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.useragent_namespace.mobile_variable",
+ "id": "reference/js/blockly.utils_namespace.useragent_namespace.mobile_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.useragent_namespace.raw_variable",
+ "id": "reference/js/blockly.utils_namespace.useragent_namespace.raw_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.xml_namespace",
+ "id": "reference/js/blockly.utils_namespace.xml_namespace"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.xml_namespace.createelement_1_function",
+ "id": "reference/js/blockly.utils_namespace.xml_namespace.createelement_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.xml_namespace.createtextnode_1_function",
+ "id": "reference/js/blockly.utils_namespace.xml_namespace.createtextnode_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.xml_namespace.domtotext_1_function",
+ "id": "reference/js/blockly.utils_namespace.xml_namespace.domtotext_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.xml_namespace.injectdependencies_1_function",
+ "id": "reference/js/blockly.utils_namespace.xml_namespace.injectdependencies_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.xml_namespace.name_space_variable",
+ "id": "reference/js/blockly.utils_namespace.xml_namespace.name_space_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.utils_namespace.xml_namespace.texttodom_1_function",
+ "id": "reference/js/blockly.utils_namespace.xml_namespace.texttodom_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Variables",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.variables_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.alldevelopervariables_1_function",
+ "id": "reference/js/blockly.variables_namespace.alldevelopervariables_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.allusedvarmodels_1_function",
+ "id": "reference/js/blockly.variables_namespace.allusedvarmodels_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.category_name_variable",
+ "id": "reference/js/blockly.variables_namespace.category_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.createvariablebuttonhandler_1_function",
+ "id": "reference/js/blockly.variables_namespace.createvariablebuttonhandler_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.deletevariable_1_function",
+ "id": "reference/js/blockly.variables_namespace.deletevariable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.flyoutcategory_1_function",
+ "id": "reference/js/blockly.variables_namespace.flyoutcategory_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.flyoutcategory_2_function",
+ "id": "reference/js/blockly.variables_namespace.flyoutcategory_2_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.flyoutcategoryblocks_1_function",
+ "id": "reference/js/blockly.variables_namespace.flyoutcategoryblocks_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.generateuniquename_1_function",
+ "id": "reference/js/blockly.variables_namespace.generateuniquename_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.generateuniquenamefromoptions_1_function",
+ "id": "reference/js/blockly.variables_namespace.generateuniquenamefromoptions_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.generatevariablefielddom_1_function",
+ "id": "reference/js/blockly.variables_namespace.generatevariablefielddom_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.getorcreatevariablepackage_1_function",
+ "id": "reference/js/blockly.variables_namespace.getorcreatevariablepackage_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.getvariable_1_function",
+ "id": "reference/js/blockly.variables_namespace.getvariable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.getvariableusesbyid_1_function",
+ "id": "reference/js/blockly.variables_namespace.getvariableusesbyid_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.nameusedwithanytype_1_function",
+ "id": "reference/js/blockly.variables_namespace.nameusedwithanytype_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.promptname_1_function",
+ "id": "reference/js/blockly.variables_namespace.promptname_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.renamevariable_1_function",
+ "id": "reference/js/blockly.variables_namespace.renamevariable_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.test_only_variable",
+ "id": "reference/js/blockly.variables_namespace.test_only_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variables_namespace.var_letter_options_variable",
+ "id": "reference/js/blockly.variables_namespace.var_letter_options_variable"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "VariablesDynamic",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.variablesdynamic_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.variablesdynamic_namespace.category_name_variable",
+ "id": "reference/js/blockly.variablesdynamic_namespace.category_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablesdynamic_namespace.flyoutcategory_1_function",
+ "id": "reference/js/blockly.variablesdynamic_namespace.flyoutcategory_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablesdynamic_namespace.flyoutcategory_2_function",
+ "id": "reference/js/blockly.variablesdynamic_namespace.flyoutcategory_2_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablesdynamic_namespace.flyoutcategoryblocks_1_function",
+ "id": "reference/js/blockly.variablesdynamic_namespace.flyoutcategoryblocks_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_colour_variable",
+ "id": "reference/js/blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_colour_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_number_variable",
+ "id": "reference/js/blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_number_variable"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_string_variable",
+ "id": "reference/js/blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_string_variable"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "WidgetDiv",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.widgetdiv_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.widgetdiv_namespace.createdom_1_function",
+ "id": "reference/js/blockly.widgetdiv_namespace.createdom_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.widgetdiv_namespace.getdiv_1_function",
+ "id": "reference/js/blockly.widgetdiv_namespace.getdiv_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.widgetdiv_namespace.hide_1_function",
+ "id": "reference/js/blockly.widgetdiv_namespace.hide_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.widgetdiv_namespace.hideifowner_1_function",
+ "id": "reference/js/blockly.widgetdiv_namespace.hideifowner_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.widgetdiv_namespace.hideifownerisinworkspace_1_function",
+ "id": "reference/js/blockly.widgetdiv_namespace.hideifownerisinworkspace_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.widgetdiv_namespace.isvisible_1_function",
+ "id": "reference/js/blockly.widgetdiv_namespace.isvisible_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.widgetdiv_namespace.repositionforwindowresize_1_function",
+ "id": "reference/js/blockly.widgetdiv_namespace.repositionforwindowresize_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.widgetdiv_namespace.show_1_function",
+ "id": "reference/js/blockly.widgetdiv_namespace.show_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "Xml",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.xml_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.appenddomtoworkspace_1_function",
+ "id": "reference/js/blockly.xml_namespace.appenddomtoworkspace_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.blocktodom_1_function",
+ "id": "reference/js/blockly.xml_namespace.blocktodom_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.blocktodomwithxy_1_function",
+ "id": "reference/js/blockly.xml_namespace.blocktodomwithxy_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.clearworkspaceandloadfromxml_1_function",
+ "id": "reference/js/blockly.xml_namespace.clearworkspaceandloadfromxml_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.deletenext_1_function",
+ "id": "reference/js/blockly.xml_namespace.deletenext_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.domtoblock_1_function",
+ "id": "reference/js/blockly.xml_namespace.domtoblock_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.domtoprettytext_1_function",
+ "id": "reference/js/blockly.xml_namespace.domtoprettytext_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.domtotext_1_function",
+ "id": "reference/js/blockly.xml_namespace.domtotext_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.domtovariables_1_function",
+ "id": "reference/js/blockly.xml_namespace.domtovariables_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.domtoworkspace_1_function",
+ "id": "reference/js/blockly.xml_namespace.domtoworkspace_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.loadworkspacecomment_1_function",
+ "id": "reference/js/blockly.xml_namespace.loadworkspacecomment_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.saveworkspacecomment_1_function",
+ "id": "reference/js/blockly.xml_namespace.saveworkspacecomment_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.variablestodom_1_function",
+ "id": "reference/js/blockly.xml_namespace.variablestodom_1_function"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.xml_namespace.workspacetodom_1_function",
+ "id": "reference/js/blockly.xml_namespace.workspacetodom_1_function"
+ },
+ ],
+ },
+ {
+ "type": "category",
+ "label": "zelos",
+ "link": {
+ "type": "doc",
+ "id": "reference/js/blockly.zelos_namespace"
+ },
+ "items": [
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.bottomrow_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zelos_namespace.bottomrow_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderer_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zelos_namespace.renderer_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.rightconnectionshape_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zelos_namespace.rightconnectionshape_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.statementinput_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zelos_namespace.statementinput_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.toprow_class._constructor__1_constructor",
+ "id": "reference/js/blockly.zelos_namespace.toprow_class._constructor__1_constructor"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.bottomrow_class",
+ "id": "reference/js/blockly.zelos_namespace.bottomrow_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.bottomrow_class.endswithelemspacer_1_method",
+ "id": "reference/js/blockly.zelos_namespace.bottomrow_class.endswithelemspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.bottomrow_class.hasleftsquarecorner_1_method",
+ "id": "reference/js/blockly.zelos_namespace.bottomrow_class.hasleftsquarecorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.bottomrow_class.hasrightsquarecorner_1_method",
+ "id": "reference/js/blockly.zelos_namespace.bottomrow_class.hasrightsquarecorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.createdom_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.createdom_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.cursor_colour_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.cursor_colour_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.cursor_radius_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.cursor_radius_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.dispose_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.dispose_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.field_colour_full_block_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_colour_full_block_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.field_dropdown_coloured_div_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_dropdown_coloured_div_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.field_dropdown_no_border_rect_shadow_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_dropdown_no_border_rect_shadow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.field_dropdown_svg_arrow_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_dropdown_svg_arrow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.field_text_fontfamily_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_text_fontfamily_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.field_text_fontweight_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_text_fontweight_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.field_textinput_box_shadow_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_textinput_box_shadow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.full_block_fields_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.full_block_fields_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.generatesecondarycolour__1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.generatesecondarycolour__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.generatetertiarycolour__1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.generatetertiarycolour__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.getcss__1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.getcss__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.grid_unit_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.grid_unit_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.hexagonal_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.hexagonal_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.init_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.init_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.jagged_teeth_height_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.jagged_teeth_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.jagged_teeth_width_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.jagged_teeth_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.makehexagonal_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makehexagonal_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.makeinsidecorners_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makeinsidecorners_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.makenotch_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makenotch_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.makerounded_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makerounded_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.makesquared_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makesquared_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.makestarthat_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makestarthat_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.max_dynamic_connection_shape_width_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.max_dynamic_connection_shape_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.replacement_glow_colour_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.replacement_glow_colour_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.replacement_glow_size_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.replacement_glow_size_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.replacementglowfilterid_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.replacementglowfilterid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.rounded_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.rounded_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.selected_glow_colour_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.selected_glow_colour_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.selected_glow_size_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.selected_glow_size_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.selectedglowfilterid_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.selectedglowfilterid_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.setdynamicproperties__1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.setdynamicproperties__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.setfontconstants__1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.setfontconstants__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.shape_in_shape_padding_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.shape_in_shape_padding_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.shapefor_1_method",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.shapefor_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.shapes_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.shapes_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.squared_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.squared_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.start_hat_height_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.start_hat_height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.start_hat_width_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.start_hat_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.constantprovider_class.statement_input_spacer_min_width_property",
+ "id": "reference/js/blockly.zelos_namespace.constantprovider_class.statement_input_spacer_min_width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.draw_1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.draw_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawconnectionhighlightpath_1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawconnectionhighlightpath_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawflatbottom__1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawflatbottom__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawflattop__1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawflattop__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawinlineinput__1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawinlineinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawleft__1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawleft__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawleftdynamicconnection__1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawleftdynamicconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawoutline__1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawoutline__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawrightdynamicconnection__1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawrightdynamicconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawrightsiderow__1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawrightsiderow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.drawstatementinput__1_method",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.drawstatementinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.drawer_class.info__property",
+ "id": "reference/js/blockly.zelos_namespace.drawer_class.info__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.applycolour_1_method",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.applycolour_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.begindrawing_1_method",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.begindrawing_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.constants_property",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.constants_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.enddrawing_1_method",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.enddrawing_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.fliprtl_1_method",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.fliprtl_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.outputshapetype_property",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.outputshapetype_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.setoutlinepath_1_method",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.setoutlinepath_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.setpath_1_method",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.setpath_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.updatereplacementfade_1_method",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.updatereplacementfade_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.updateselected_1_method",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.updateselected_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.pathobject_class.updateshapeforinputhighlight_1_method",
+ "id": "reference/js/blockly.zelos_namespace.pathobject_class.updateshapeforinputhighlight_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderer_class",
+ "id": "reference/js/blockly.zelos_namespace.renderer_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderer_class.constants__property",
+ "id": "reference/js/blockly.zelos_namespace.renderer_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderer_class.getconstants_1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderer_class.getconstants_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderer_class.makeconstants__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderer_class.makeconstants__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderer_class.makedrawer__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderer_class.makedrawer__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderer_class.makepathobject_1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderer_class.makepathobject_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderer_class.makerenderinfo__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderer_class.makerenderinfo__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.addalignmentpadding__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.addalignmentpadding__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.addinput__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.addinput__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.adjustxposition__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.adjustxposition__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.bottomrow_property",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.bottomrow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.constants__property",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.constants__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.finalize__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.finalize__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.finalizehorizontalalignment__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.finalizehorizontalalignment__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.finalizeoutputconnection__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.finalizeoutputconnection__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.finalizeverticalalignment__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.finalizeverticalalignment__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.getdesiredrowwidth__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getdesiredrowwidth__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.getelemcenterline__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getelemcenterline__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.getinrowspacing__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getinrowspacing__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.getnegativespacing__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getnegativespacing__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.getrenderer_1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getrenderer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.getspacerrowheight__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getspacerrowheight__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.getspacerrowwidth__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getspacerrowwidth__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.hasstatementinput_property",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.hasstatementinput_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.isinline_property",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.isinline_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.ismultirow_property",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.ismultirow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.measure_1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.measure_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.renderer__property",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.renderer__property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.rightside_property",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.rightside_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.shouldstartnewrow__1_method",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.shouldstartnewrow__1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.renderinfo_class.toprow_property",
+ "id": "reference/js/blockly.zelos_namespace.renderinfo_class.toprow_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.rightconnectionshape_class",
+ "id": "reference/js/blockly.zelos_namespace.rightconnectionshape_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.rightconnectionshape_class.height_property",
+ "id": "reference/js/blockly.zelos_namespace.rightconnectionshape_class.height_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.rightconnectionshape_class.width_property",
+ "id": "reference/js/blockly.zelos_namespace.rightconnectionshape_class.width_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.statementinput_class",
+ "id": "reference/js/blockly.zelos_namespace.statementinput_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.statementinput_class.connectedbottomnextconnection_property",
+ "id": "reference/js/blockly.zelos_namespace.statementinput_class.connectedbottomnextconnection_property"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.toprow_class",
+ "id": "reference/js/blockly.zelos_namespace.toprow_class"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.toprow_class.endswithelemspacer_1_method",
+ "id": "reference/js/blockly.zelos_namespace.toprow_class.endswithelemspacer_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.toprow_class.hasleftsquarecorner_1_method",
+ "id": "reference/js/blockly.zelos_namespace.toprow_class.hasleftsquarecorner_1_method"
+ },
+ {
+ "type": "doc",
+ "label": "blockly.zelos_namespace.toprow_class.hasrightsquarecorner_1_method",
+ "id": "reference/js/blockly.zelos_namespace.toprow_class.hasrightsquarecorner_1_method"
+ },
+ ],
+ },
+ ]
+ },
+ {
+ "type": "category",
+ "label": "Variables",
+ "collapsible": true,
+ "className": "hide-level-3",
+ "items": [
+ {
+ "type": "doc",
+ "label": "Blocks",
+ "id": "reference/js/blockly.blocks_variable"
+ },
+ {
+ "type": "doc",
+ "label": "COLLAPSE_CHARS",
+ "id": "reference/js/blockly.collapse_chars_variable"
+ },
+ {
+ "type": "doc",
+ "label": "COLLAPSED_FIELD_NAME",
+ "id": "reference/js/blockly.collapsed_field_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "COLLAPSED_INPUT_NAME",
+ "id": "reference/js/blockly.collapsed_input_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "config",
+ "id": "reference/js/blockly.config_variable"
+ },
+ {
+ "type": "doc",
+ "label": "defineBlocksWithJsonArray",
+ "id": "reference/js/blockly.defineblockswithjsonarray_variable"
+ },
+ {
+ "type": "doc",
+ "label": "DELETE_VARIABLE_ID",
+ "id": "reference/js/blockly.delete_variable_id_variable"
+ },
+ {
+ "type": "doc",
+ "label": "DropDownDiv",
+ "id": "reference/js/blockly.dropdowndiv_variable"
+ },
+ {
+ "type": "doc",
+ "label": "getMainWorkspace",
+ "id": "reference/js/blockly.getmainworkspace_variable"
+ },
+ {
+ "type": "doc",
+ "label": "getSelected",
+ "id": "reference/js/blockly.getselected_variable"
+ },
+ {
+ "type": "doc",
+ "label": "INPUT_VALUE",
+ "id": "reference/js/blockly.input_value_variable"
+ },
+ {
+ "type": "doc",
+ "label": "JavaScript",
+ "id": "reference/js/blockly.javascript_variable"
+ },
+ {
+ "type": "doc",
+ "label": "keyboardNavigationController",
+ "id": "reference/js/blockly.keyboardnavigationcontroller_variable"
+ },
+ {
+ "type": "doc",
+ "label": "Msg",
+ "id": "reference/js/blockly.msg_variable"
+ },
+ {
+ "type": "doc",
+ "label": "NEXT_STATEMENT",
+ "id": "reference/js/blockly.next_statement_variable"
+ },
+ {
+ "type": "doc",
+ "label": "OPPOSITE_TYPE",
+ "id": "reference/js/blockly.opposite_type_variable"
+ },
+ {
+ "type": "doc",
+ "label": "OUTPUT_VALUE",
+ "id": "reference/js/blockly.output_value_variable"
+ },
+ {
+ "type": "doc",
+ "label": "PREVIOUS_STATEMENT",
+ "id": "reference/js/blockly.previous_statement_variable"
+ },
+ {
+ "type": "doc",
+ "label": "PROCEDURE_CATEGORY_NAME",
+ "id": "reference/js/blockly.procedure_category_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "RENAME_VARIABLE_ID",
+ "id": "reference/js/blockly.rename_variable_id_variable"
+ },
+ {
+ "type": "doc",
+ "label": "setParentContainer",
+ "id": "reference/js/blockly.setparentcontainer_variable"
+ },
+ {
+ "type": "doc",
+ "label": "svgResize",
+ "id": "reference/js/blockly.svgresize_variable"
+ },
+ {
+ "type": "doc",
+ "label": "TOOLBOX_AT_BOTTOM",
+ "id": "reference/js/blockly.toolbox_at_bottom_variable"
+ },
+ {
+ "type": "doc",
+ "label": "TOOLBOX_AT_LEFT",
+ "id": "reference/js/blockly.toolbox_at_left_variable"
+ },
+ {
+ "type": "doc",
+ "label": "TOOLBOX_AT_RIGHT",
+ "id": "reference/js/blockly.toolbox_at_right_variable"
+ },
+ {
+ "type": "doc",
+ "label": "TOOLBOX_AT_TOP",
+ "id": "reference/js/blockly.toolbox_at_top_variable"
+ },
+ {
+ "type": "doc",
+ "label": "VARIABLE_CATEGORY_NAME",
+ "id": "reference/js/blockly.variable_category_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "VARIABLE_DYNAMIC_CATEGORY_NAME",
+ "id": "reference/js/blockly.variable_dynamic_category_name_variable"
+ },
+ {
+ "type": "doc",
+ "label": "VERSION",
+ "id": "reference/js/blockly.version_variable"
+ },
+ ]
+ },
+ {
+ "type": "category",
+ "label": "Type Aliases",
+ "collapsible": true,
+ "className": "hide-level-3",
+ "items": [
+ {
+ "type": "doc",
+ "label": "FieldCheckboxValidator",
+ "id": "reference/js/blockly.fieldcheckboxvalidator_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "FieldDropdownConfig",
+ "id": "reference/js/blockly.fielddropdownconfig_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "FieldDropdownValidator",
+ "id": "reference/js/blockly.fielddropdownvalidator_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "FieldNumberValidator",
+ "id": "reference/js/blockly.fieldnumbervalidator_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "FieldTextInputConfig",
+ "id": "reference/js/blockly.fieldtextinputconfig_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "FieldTextInputValidator",
+ "id": "reference/js/blockly.fieldtextinputvalidator_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "FieldValidator",
+ "id": "reference/js/blockly.fieldvalidator_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "FieldVariableValidator",
+ "id": "reference/js/blockly.fieldvariablevalidator_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "ICopyData",
+ "id": "reference/js/blockly.icopydata_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "MenuGenerator",
+ "id": "reference/js/blockly.menugenerator_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "MenuGeneratorFunction",
+ "id": "reference/js/blockly.menugeneratorfunction_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "MenuOption",
+ "id": "reference/js/blockly.menuoption_typealias"
+ },
+ {
+ "type": "doc",
+ "label": "ReturnEphemeralFocus",
+ "id": "reference/js/blockly.returnephemeralfocus_typealias"
+ },
+ ]
+ },
+];