Stay organized with collections
Save and categorize content based on your preferences.
blockly > Xml
Xml namespace
Functions
Function |
Description |
appendDomToWorkspace(xml, workspace) |
Decode an XML DOM and create blocks on the workspace. Position the new blocks immediately below prior blocks, aligned by their starting edge. |
blockToDom(block, opt_noId) |
Encode a block subtree as XML. |
blockToDomWithXY(block, opt_noId) |
Encode a block subtree as XML with XY coordinates. |
clearWorkspaceAndLoadFromXml(xml, workspace) |
Clear the given workspace then decode an XML DOM and create blocks on the workspace. |
deleteNext(xmlBlock) |
Remove any 'next' block (statements in a stack). |
domToBlock(xmlBlock, workspace) |
Decode an XML block tag and create a block (and possibly sub blocks) on the workspace. |
domToPrettyText(dom) |
Converts a DOM structure into properly indented text. |
domToText(dom) |
Converts a DOM structure into plain text. Currently the text format is fairly ugly: all one line with no whitespace, unless the DOM itself has whitespace built-in. |
domToVariables(xmlVariables, workspace) |
Decode an XML list of variables and add the variables to the workspace. |
domToWorkspace(xml, workspace) |
Decode an XML DOM and create blocks on the workspace. |
loadWorkspaceComment(elem, workspace) |
Deserializes the given comment state into the given workspace. |
saveWorkspaceComment(comment, skipId) |
Serializes the given workspace comment to XML. |
variablesToDom(variableList) |
Encode a list of variables as XML. |
workspaceToDom(workspace, skipId) |
Encode a block tree as XML. |
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 Blockly Xml namespace provides functions for encoding and decoding Blockly blocks and workspaces to and from XML."],["These functions enable saving and loading workspaces, importing and exporting blocks, and manipulating block structures using XML."],["You can use these functions to serialize and deserialize workspace elements such as blocks, variables, and comments."],["This functionality facilitates persistent storage and interchange of Blockly projects and data."]]],[]]