Lines Matching refs:maxWidth
173 …traintSize on width/height**.<br>Default value:<br>{<br>minWidth: 0,<br>maxWidth: Infinity,<br>min…
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 …maxWidth, the layout logic of the component takes effect, and the value range of **width** is [min…
183 | width and maxWidth; height and maxHeight| width = minWidth<br>height = minHeight |
184 …kes effect, and the value of **width** cannot be greater than that of **maxWidth**.<br>The layout …
185 | minWidth and maxWidth; minHeight and maxHeight| The width of the component is initially determine…
186 | width, minWidth, and maxWidth| The layout restrictions passed by the parent container are used fo…
209 | maxWidth | [Length](ts-types.md#length) | No| Maximum width of the component.|
243 .constraintSize({ maxWidth: 200 })