Stay organized with collections
Save and categorize content based on your preferences.
blockly > Xml > appendDomToWorkspace
Xml.appendDomToWorkspace() function
Decode an XML DOM and create blocks on the workspace. Position the new blocks immediately below prior blocks, aligned by their starting edge.
Signature:
export declare function appendDomToWorkspace(xml: Element, workspace: WorkspaceSvg): string[];
Parameters
Parameter |
Type |
Description |
xml |
Element |
The XML DOM. |
workspace |
WorkspaceSvg |
The workspace to add to. |
Returns:
string[]
An array containing new block IDs.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["The `appendDomToWorkspace` function decodes an XML DOM and creates blocks on a specified workspace, positioning them below existing blocks."],["It takes an XML DOM element and a WorkspaceSvg object as input, returning an array of new block IDs."],["New blocks are positioned below prior blocks and aligned by their starting edge for organizational placement on the workspace."]]],[]]