表示尺寸(宽度,高度)

(UI 0.9.9)

简介

大小在整个 UI 中用于表示屏幕、控件或区域的大小。

类概要

final class UI\Size {
/* 属性 */
public $width;
public $height;
/* 构造函数 */
public __construct(float $width, float $height)
/* 方法 */
public getHeight(): float
public getWidth(): float
public static of(float $size): UI\Size
public static of(UI\Point $point): UI\Size
public setHeight(float $size)
public setWidth(float $size)
}

属性

width

保存宽度,可以直接读写

height

保存高度,可以直接读写

目录

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top