Stay organized with collections
Save and categorize content based on your preferences.
blockly > Events > CommentCreate
Notifies listeners that a workspace comment was created.
Signature:
export declare class CommentCreate extends CommentBase
Extends: CommentBase
Constructors
Properties
Property |
Modifiers |
Type |
Description |
json? |
|
comments.State |
(Optional) The JSON representation of the created workspace comment. |
type |
|
EventType |
|
xml? |
|
Element | DocumentFragment |
(Optional) The XML representation of the created workspace comment. |
Methods
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 2025-05-16 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 2025-05-16 UTC."],[[["The `Events.CommentCreate` class in Blockly notifies listeners when a new workspace comment is created."],["It provides properties like `json` and `xml` to access the comment's representation in different formats."],["The `run` method executes the creation event, while `toJson` encodes it as JSON for storage or transmission."],["This class extends the `CommentBase` class and includes a constructor to create new instances."]]],["The `CommentCreate` class, extending `CommentBase`, notifies listeners about the creation of a workspace comment. It can be constructed with an optional comment. Key properties include the optional JSON (`comments.State`) and XML representations (`Element | DocumentFragment`) of the created comment, alongside a string `type`. The class provides methods to `run` the creation event and to `toJson`, converting the event data to a JSON format.\n"]]