MCPcopy
hub / github.com/libgdx/libgdx / height

Method height

gdx/src/com/badlogic/gdx/scenes/scene2d/ui/Cell.java:133–139  ·  view source on GitHub ↗

Sets the minHeight, prefHeight, and maxHeight to the specified value.

(Value height)

Source from the content-addressed store, hash-verified

131
132 /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */
133 public Cell<T> height (Value height) {
134 if (height == null) throw new IllegalArgumentException("height cannot be null.");
135 minHeight = height;
136 prefHeight = height;
137 maxHeight = height;
138 return this;
139 }
140
141 /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */
142 public Cell<T> height (float height) {

Callers 10

Lwjgl3CursorMethod · 0.45
getDisplayModeMethod · 0.45
getDisplayModesMethod · 0.45
createMethod · 0.45
createMethod · 0.45
createMethod · 0.45
createMethod · 0.45
createMethod · 0.45
createMethod · 0.45
mainMethod · 0.45

Calls 1

valueOfMethod · 0.95

Tested by 7

createMethod · 0.36
createMethod · 0.36
createMethod · 0.36
createMethod · 0.36
createMethod · 0.36
createMethod · 0.36
mainMethod · 0.36