研究调查问卷:请告诉我们您使用 Blockly 的体验
开始调查问卷
blockly >IFlyout >setVisible
IFlyout.setVisible() 方法
设置浮出控件是否可见。值为 true 并不一定表示显示浮出控件。它的容器处于隐藏状态,因此可能被隐藏了。
Signature:
setVisible(visible: boolean): void;
参数
参数 |
类型 |
说明 |
可见 |
布尔值 |
如果可见,则为“true”。 |
返回:
void
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-10-15。
[null,null,["最后更新时间 (UTC):2024-10-15。"],[[["The `IFlyout.setVisible()` method controls the visibility of the flyout, but does not guarantee it will be shown if its container is hidden."],["It accepts a single boolean parameter, `visible`, indicating whether the flyout should be visible."],["Calling this method does not return any value."]]],["The `setVisible()` method of the `IFlyout` interface controls the flyout's visibility. It accepts a boolean parameter, `visible`. When `visible` is set to `true`, the flyout is intended to be displayed, but actual visibility depends on the container's state. The method does not return any value. It essentially toggles the visibility state of the flyout based on the input boolean.\n"]]