All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zkoss.zul.Vbox Maven / Gradle / Ivy

There is a newer version: 10.0.0-jakarta
Show newest version
/* Vbox.java

	Purpose:
		
	Description:
		
	History:
		Mon Jun 20 22:17:09     2005, Created by tomyeh

Copyright (C) 2005 Potix Corporation. All Rights Reserved.

{{IS_RIGHT
	This program is distributed under LGPL Version 2.1 in the hope that
	it will be useful, but WITHOUT ANY WARRANTY.
}}IS_RIGHT
*/
package org.zkoss.zul;

import org.zkoss.zk.ui.Component;

/**
 * A vbox.
 * 

Default {@link #getZclass}: z-vbox.(since 3.5.0) * * Note: when use {@link #setHflex(String)} or {@link #setVflex(String)} in some * cases, it will not work well, because the vbox is made by HTML Table element, * which will increase its size according to its content. If so, please use Vlayout * component instead. * @author tomyeh */ public class Vbox extends Box { public Vbox() { } /** Constructor a vertical box by assigning an array of children. * * @param children an array of children to be added * @since 2.4.0 */ public Vbox(Component[] children) { super(children); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy