return (L)this;
}
/** Sets the padTop, padLeft, padBottom, and padRight around the table to the specified value. */
public L pad (float pad) {
padTop = new FixedValue(pad);
padLeft = new FixedValue(pad);
padBottom = new FixedValue(pad);
padRight = new FixedValue(pad);
sizeInvalid = true;
return (L)this;
}