Hbox"
From Documentation
Tmillsclare (talk | contribs) m (Created page with 'init') |
|||
Line 1: | Line 1: | ||
− | + | == Hbox == | |
+ | The <tt>hbox</tt> component is used to create a horizontally oriented box. Each component placed in the <tt>hbox </tt>will be placed horizontally in a row. | ||
+ | |||
+ | [[Image:box.png]] | ||
+ | |||
+ | <source lang="xml" > | ||
+ | <zk> | ||
+ | <vbox> | ||
+ | <button label="Button 1" /> | ||
+ | <button label="Button 2" /> | ||
+ | </vbox> | ||
+ | <hbox> | ||
+ | <button label="Button 3" /> | ||
+ | <button label="Button 4" /> | ||
+ | </hbox> | ||
+ | </zk> | ||
+ | </source> | ||
+ | |||
+ | == Class Name == | ||
+ | <tt>org.zkoss.zul.Hbox</tt> | ||
+ | |||
+ | == Supported Child Components == | ||
+ | |||
+ | <source lang="xml" > | ||
+ | *ALL | ||
+ | </source> | ||
+ | |||
+ | == Supported Events == | ||
+ | |||
+ | <source lang="xml" > | ||
+ | *NONE | ||
+ | </source> | ||
+ | |||
+ | == Properties == | ||
+ | |||
+ | <source lang="xml" > | ||
+ | *NONE | ||
+ | </source> | ||
+ | |||
+ | == Methods == | ||
+ | |||
+ | <source lang="xml" > | ||
+ | *NONE | ||
+ | </source> | ||
+ | |||
+ | == Inherited From == | ||
+ | |||
+ | {| border="1" | ||
+ | ! <center>Inherited From</center> | ||
+ | |||
+ | |- | ||
+ | | [#Box org.zkoss.zul.Box] | ||
+ | |||
+ | |- | ||
+ | | [#XulElement org.zkoss.zul.impl.XulElement] | ||
+ | |||
+ | |- | ||
+ | | [#HtmlBasedComponent org.zkoss.zk.ui.HtmlBasedComponent] | ||
+ | |||
+ | |- | ||
+ | | [#AbstractComponent org.zkoss.zk.ui.AbstractComponent ] | ||
+ | |||
+ | |} |
Revision as of 07:12, 23 April 2010
Hbox
The hbox component is used to create a horizontally oriented box. Each component placed in the hbox will be placed horizontally in a row.
<zk>
<vbox>
<button label="Button 1" />
<button label="Button 2" />
</vbox>
<hbox>
<button label="Button 3" />
<button label="Button 4" />
</hbox>
</zk>
Class Name
org.zkoss.zul.Hbox
Supported Child Components
*ALL
Supported Events
*NONE
Properties
*NONE
Methods
*NONE
Inherited From
[#Box org.zkoss.zul.Box] |
[#XulElement org.zkoss.zul.impl.XulElement] |
[#HtmlBasedComponent org.zkoss.zk.ui.HtmlBasedComponent] |
[#AbstractComponent org.zkoss.zk.ui.AbstractComponent ] |