研究调查问卷:请告诉我们您使用 Blockly 的体验
开始调查问卷
blockly >WorkspaceSvg >highlightBlock
WorkspaceSvg.highlightBlock() 方法
在工作区中突出显示或取消突出显示某个块。块突出显示通常用于直观地标记当前正在执行的块。
Signature:
highlightBlock(id: string | null, opt_state?: boolean): void;
参数
参数 |
类型 |
说明 |
id |
字符串 |null |
要突出显示/取消突出显示的块的 ID,或者 null 表示没有块(用于取消突出显示所有块)。 |
opt_state |
布尔值 |
(可选)如未定义,则会突出显示指定的代码块并自动取消突出显示所有其他代码块。如果为 true 或 false,手动突出显示/取消突出显示指定代码块。 |
返回:
void
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-22。
[null,null,["最后更新时间 (UTC):2024-08-22。"],[[["The `highlightBlock` method is used to visually distinguish a specific block or unhighlight all blocks within the workspace."],["It takes an optional `opt_state` parameter that allows for manual control over highlighting, otherwise it automatically unhighlights other blocks when highlighting a new one."],["The primary use case for this method is to visually indicate the block currently being executed."]]],[]]