![]() |
Qucs-S S-parameter Viewer & RF Synthesis Tools
|

Public Member Functions | |
| bool | ascii_only (self) |
| "ConsoleOptions" | copy (self) |
| "ConsoleOptions" | update (self, *Union[int, NoChange] width=NO_CHANGE, Union[int, NoChange] min_width=NO_CHANGE, Union[int, NoChange] max_width=NO_CHANGE, Union[Optional[JustifyMethod], NoChange] justify=NO_CHANGE, Union[Optional[OverflowMethod], NoChange] overflow=NO_CHANGE, Union[Optional[bool], NoChange] no_wrap=NO_CHANGE, Union[Optional[bool], NoChange] highlight=NO_CHANGE, Union[Optional[bool], NoChange] markup=NO_CHANGE, Union[Optional[int], NoChange] height=NO_CHANGE) |
| "ConsoleOptions" | update_width (self, int width) |
| "ConsoleOptions" | update_height (self, int height) |
| "ConsoleOptions" | reset_height (self) |
| "ConsoleOptions" | update_dimensions (self, int width, int height) |
Static Public Attributes | |
| ConsoleDimensions | size |
| bool | legacy_windows |
| int | min_width |
| int | max_width |
| bool | is_terminal |
| str | encoding |
| int | max_height |
| Optional | justify = None |
| Optional | overflow = None |
| Optional | no_wrap = False |
| Optional | highlight = None |
| Optional | markup = None |
| Optional | height = None |
Options for __rich_console__ method.
| bool pip._vendor.rich.console.ConsoleOptions.ascii_only | ( | self | ) |
Check if renderables should use ascii only.
| "ConsoleOptions" pip._vendor.rich.console.ConsoleOptions.copy | ( | self | ) |
Return a copy of the options.
Returns:
ConsoleOptions: a copy of self.
| "ConsoleOptions" pip._vendor.rich.console.ConsoleOptions.reset_height | ( | self | ) |
Return a copy of the options with height set to ``None``.
Returns:
~ConsoleOptions: New console options instance.
| "ConsoleOptions" pip._vendor.rich.console.ConsoleOptions.update | ( | self, | |
| *Union[int, NoChange] | width = NO_CHANGE, |
||
| Union[int, NoChange] | min_width = NO_CHANGE, |
||
| Union[int, NoChange] | max_width = NO_CHANGE, |
||
| Union[Optional[JustifyMethod], NoChange] | justify = NO_CHANGE, |
||
| Union[Optional[OverflowMethod], NoChange] | overflow = NO_CHANGE, |
||
| Union[Optional[bool], NoChange] | no_wrap = NO_CHANGE, |
||
| Union[Optional[bool], NoChange] | highlight = NO_CHANGE, |
||
| Union[Optional[bool], NoChange] | markup = NO_CHANGE, |
||
| Union[Optional[int], NoChange] | height = NO_CHANGE |
||
| ) |
Update values, return a copy.
| "ConsoleOptions" pip._vendor.rich.console.ConsoleOptions.update_dimensions | ( | self, | |
| int | width, | ||
| int | height | ||
| ) |
Update the width and height, and return a copy.
Args:
width (int): New width (sets both min_width and max_width).
height (int): New height.
Returns:
~ConsoleOptions: New console options instance.
| "ConsoleOptions" pip._vendor.rich.console.ConsoleOptions.update_height | ( | self, | |
| int | height | ||
| ) |
Update the height, and return a copy.
Args:
height (int): New height
Returns:
~ConsoleOptions: New Console options instance.
| "ConsoleOptions" pip._vendor.rich.console.ConsoleOptions.update_width | ( | self, | |
| int | width | ||
| ) |
Update just the width, return a copy.
Args:
width (int): New width (sets both min_width and max_width)
Returns:
~ConsoleOptions: New console options instance.