Control Box (Arrangement)

(PHP 7, UI 0.9.9)

소개

A Box allows the arrangement of other controls

클래스 개요

UI\Controls\Box extends UI\Control {
/* Constants */
const integer Vertical ;
const integer Horizontal ;
/* 프로퍼티 */
protected $controls ;
/* Constructor */
public __construct ([ integer $orientation = UI\Controls\Box::Horizontal ] )
/* 메소드 */
public integer append ( Control $control [, boolean $stretchy = false ] )
public boolean delete ( integer $index )
public integer getOrientation ( void )
public bool isPadded ( void )
public setPadded ( boolean $padded )
/* 상속된 메소드 */
public UI\Control::destroy ( void )
public UI\Control::disable ( void )
public UI\Control::enable ( void )
public UI\Control UI\Control::getParent ( void )
public int UI\Control::getTopLevel ( void )
public UI\Control::hide ( void )
public bool UI\Control::isEnabled ( void )
public bool UI\Control::isVisible ( void )
public UI\Control::setParent ( UI\Control $parent )
public UI\Control::show ( void )
}

프로퍼티

controls

Contains controls, should not be manipulated directly

예약 상수

UI\Controls\Box::Vertical

UI\Controls\Box::Horizontal

Table of Contents

add a note add a note

User Contributed Notes

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