- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 30 of file VboxH.java.
◆ VboxH()
org.turro.zkoss.layout.VboxH.VboxH |
( |
int |
maxRows | ) |
|
Definition at line 35 of file VboxH.java.
36 this.maxRows = maxRows;
◆ addComponent()
void org.turro.zkoss.layout.VboxH.addComponent |
( |
Component |
comp | ) |
|
Definition at line 47 of file VboxH.java.
48 if(currentBox ==
null || currentRow >= maxRows) {
49 currentBox =
new Vlayout();
51 appendChild(currentBox);
53 currentBox.appendChild(comp);
◆ clear()
void org.turro.zkoss.layout.VboxH.clear |
( |
| ) |
|
◆ getMaxRows()
int org.turro.zkoss.layout.VboxH.getMaxRows |
( |
| ) |
|
◆ getRealChildren()
List org.turro.zkoss.layout.VboxH.getRealChildren |
( |
| ) |
|
Definition at line 57 of file VboxH.java.
58 List list =
new ArrayList();
59 for(Component v : (List<Component>) getChildren()) {
60 list.addAll(v.getChildren());
◆ setMaxRows()
void org.turro.zkoss.layout.VboxH.setMaxRows |
( |
int |
maxRows | ) |
|
Definition at line 43 of file VboxH.java.
44 this.maxRows = maxRows;
The documentation for this class was generated from the following file: