研究调查问卷:请告诉我们您使用 Blockly 的体验
开始调查问卷
blockly >飞出 >setMetrics_
Flyout.setMetrics_() 方法
设置浮出控件的平移方向,使其与滚动条相匹配。
Signature:
protected abstract setMetrics_(xyRatio: {
x?: number;
y?: number;
}): void;
参数
参数 |
类型 |
说明 |
xyRatio |
{ x?: number;y?:数字;} |
包含一个 y 属性,该属性是 0 到 1 之间的浮点数,用于指定滚动程度和类似的 x 属性。 |
返回:
void
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-09-12。
[null,null,["最后更新时间 (UTC):2024-09-12。"],[[["The `Flyout.setMetrics_()` method adjusts the flyout's position to align with the scrollbars."],["It takes an `xyRatio` object as input, which contains `x` and `y` properties representing the horizontal and vertical scroll positions, respectively."],["This method is protected and abstract, meaning it is intended for internal use and needs to be implemented by subclasses."]]],["The `setMetrics_()` method adjusts the flyout's position based on scrollbar positions. It accepts an `xyRatio` object containing optional `x` and `y` properties. These properties, ranging from 0 to 1, dictate the degree of scrolling in the horizontal and vertical directions, respectively. The method's core action is to translate the flyout to align with the current scroll state, using the provided `xyRatio` to determine the correct translation. It does not return any value.\n"]]