Lines Matching refs:maxHeight
173 … value:<br>{<br>minWidth: 0,<br>maxWidth: Infinity,<br>minHeight: 0,<br>maxHeight: Infinity<br>}<b…
175 **Impact of constraintSize(minWidth/maxWidth/minHeight/maxHeight) on width/height**
179 | \ | width=MAX(minWidth,MIN(maxWidth,width))<br>height=MAX(minHeight,MIN(maxHeight,height)) |
180 | maxWidth, maxHeight| width=MAX(minWidth,width)<br>height=MAX(minHeight,height) |
181 | minWidth, minHeight| width=MIN(maxWidth,width)<br>height=MIN(maxHeight,height) |
182 …maxHeight, the layout logic of the component takes effect, and the value range of **height** is [m…
183 | width and maxWidth; height and maxHeight| width = minWidth<br>height = minHeight |
184 … component takes effect, and the value of **height** cannot be greater than that of **maxHeight**.|
185 | minWidth and maxWidth; minHeight and maxHeight| The width of the component is initially determine…
187 | height, minHeight, and maxHeight| The layout restrictions passed by the parent container are used…
211 | maxHeight | [Length](ts-types.md#length) | No| Maximum height of the component.|