UNPKG

laya-coreui-es

Version:

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

43 lines (42 loc) 808 B
import { LayoutBox } from "./LayoutBox"; /** * <code>HBox</code> 是一个水平布局容器类。 */ export declare class HBox extends LayoutBox { /** * 无对齐。 */ static NONE: string; /** * 居顶部对齐。 */ static TOP: string; /** * 居中对齐。 */ static MIDDLE: string; /** * 居底部对齐。 */ static BOTTOM: string; /** * @inheritDoc * @override */ protected sortItem(items: any[]): void; /** * @inheritDoc * @override */ set height(value: number); /** * @inheritDoc * @override */ get height(): number; /** * @inheritDoc * @override */ protected changeItems(): void; }