Represents dimenstions (width, height)

(UI 0.9.9)

Introdução

Sizes are used throughout UI to represent the size of a screen, control, or area.

Sinopse da classe

final UI\Size {
/* Propriedades */
public $width;
public $height;
/* Constructor */
public __construct ( float $width , float $height )
/* Métodos */
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 )
}

Propriedades

width

Holds the width, can be read/written directly

height

Holds the height, can be read/written directly

Índice

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top