509510511512513514515516517
return this; } /** Padding at the bottom edge of the table. */ public Table padBottom (float padBottom) { this.padBottom = new Fixed(padBottom); sizeInvalid = true; return this; }
516517518519520521522523524
return this; } /** Padding at the right edge of the table. */ public Table padRight (float padRight) { this.padRight = new Fixed(padRight); sizeInvalid = true; return this; }
130131132133134135136137
return this; } /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */ public Cell<T> size (float size) { size(new Fixed(size)); return this; }
136137138139140141142143
return this; } /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */ public Cell<T> size (float width, float height) { size(new Fixed(width), new Fixed(height)); return this; }
151152153154155156157158
return this; } /** Sets the minWidth, prefWidth, and maxWidth to the specified value. */ public Cell<T> width (float width) { width(new Fixed(width)); return this; }
166167168169170171172173
return this; } /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */ public Cell<T> height (float height) { height(new Fixed(height)); return this; }
201202203204205206207208
return this; } /** Sets the minWidth and minHeight to the specified value. */ public Cell<T> minSize (float size) { minSize(new Fixed(size)); return this; }
207208209210211212213214
return this; } /** Sets the minWidth and minHeight to the specified values. */ public Cell<T> minSize (float width, float height) { minSize(new Fixed(width)); return this; }
212213214215216217218219
minSize(new Fixed(width)); return this; } public Cell<T> minWidth (float minWidth) { this.minWidth = new Fixed(minWidth); return this; }
217218219220221222223224
this.minWidth = new Fixed(minWidth); return this; } public Cell<T> minHeight (float minHeight) { this.minHeight = new Fixed(minHeight); return this; }