MCPcopy
hub / github.com/Textualize/rich / split_column

Method split_column

rich/layout.py:307–313  ·  view source on GitHub ↗

Split the layout in to a column (layouts stacked on top of each other). Args: *layouts (Layout): Positional arguments should be (sub) Layout instances.

(self, *layouts: Union["Layout", RenderableType])

Source from the content-addressed store, hash-verified

305 self.split(*layouts, splitter="row")
306
307 def split_column(self, *layouts: Union["Layout", RenderableType]) -> None:
308 """Split the layout in to a column (layouts stacked on top of each other).
309
310 Args:
311 *layouts (Layout): Positional arguments should be (sub) Layout instances.
312 """
313 self.split(*layouts, splitter="column")
314
315 def unsplit(self) -> None:
316 """Reset splits to initial state."""

Callers 2

test_renderFunction · 0.95
layout.pyFile · 0.80

Calls 1

splitMethod · 0.95

Tested by 1

test_renderFunction · 0.76