Skip to main content

resizeChildren 调整所有子元素

resizeChildren

类型: MethodDeclaration

所属类: UIElement

定义位置: ui.ts

描述

调整所有子元素

返回值

类型: void

源代码

位置: 第 1217 行

protected resizeChildren(): void {
const children = this.children
const length = children.length
for (let i = 0; i < length; i++) {
children[i].resize()
}
}

文档生成时间:2025/7/7 12:07:07