UNPKG

laya-coreui-es

Version:

laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改

39 lines (38 loc) 805 B
import { LayoutBox } from "./LayoutBox"; /** * <code>VBox</code> 是一个垂直布局容器类。 */ export declare class VBox extends LayoutBox { /** * 无对齐。 */ static NONE: string; /** * 左对齐。 */ static LEFT: string; /** * 居中对齐。 */ static CENTER: string; /** * 右对齐。 */ static RIGHT: string; /** * @override */ set width(value: number); /** * @inheritDoc * @override */ get width(): number; /** 兼容以前的changeItems逻辑,是否在发生变动时,使用 sortItem 排序所有item */ isSortItem: boolean; /** * @inheritDoc * @override */ protected changeItems(): void; }