研究调查问卷:请告诉我们您使用 Blockly 的体验
开始调查问卷
blockly >blockRendering >IPathObject >IPathObjectremoveConnectionHighlight
blockRendering.IPathObject.removeConnectionHighlight() 方法
删除与指定连接相关联的任何突出显示项(如果存在)。
Signature:
removeConnectionHighlight?(connection: RenderedConnection): void;
参数
参数 |
类型 |
说明 |
连接 |
RenderedConnection |
|
返回:
void
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-21。
[null,null,["最后更新时间 (UTC):2024-08-21。"],[[["The `removeConnectionHighlight` method is part of the `blockRendering.IPathObject` interface in Blockly."],["This method removes any visual highlight on a given `RenderedConnection`, if a highlight exists."],["It accepts one argument: `connection` of type `RenderedConnection` which represents the connection to remove the highlight from."],["The method does not return any value (void)."]]],["The `removeConnectionHighlight()` method, part of the `IPathObject` interface, is designed to remove the visual highlight from a specified connection. It accepts a single parameter, `connection`, which is of type `RenderedConnection`. The method checks for the existence of a highlight on the provided connection and removes it if present. This action results in no return value, indicated by the `void` return type.\n"]]