diff --git a/docs/call reference.md b/docs/call reference.md index 5b769deb..23b879e6 100644 --- a/docs/call reference.md +++ b/docs/call reference.md @@ -5301,6 +5301,7 @@ Listbox(values, size = (None, None), s = (None, None), disabled = False, + justification = None, auto_size_text = None, font = None, no_scrollbar = False, @@ -5341,6 +5342,7 @@ Parameter Descriptions: | (int, int) or (int, None) or int | size | w=characters-wide, h=rows-high. If an int instead of a tuple is supplied, then height is auto-set to 1 | | (int, int) or (None, None) or int | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | bool | disabled | set disable state for element | +| str | justification | justification for items in listbox. Valid choices - left, right, center. Default is left | | bool | auto_size_text | True if element should be the same size as the contents | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | bool | no_scrollbar | Controls if a scrollbar should be shown. If True, no scrollbar will be shown | @@ -14455,16 +14457,18 @@ Align an element or a row of elements to the bottom of the row that contains it ``` vbottom(elem_or_row, expand_x = None, - expand_y = None) + expand_y = None, + background_color = None) ``` Parameter Descriptions: |Type|Name|Meaning| |--|--|--| -| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | -| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | -| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | +| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | +| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| str or None | background_color | Background color for container that is used by vcenter to do the alignment | | Column or List[Column] | **RETURN** | A column element containing the provided element aligned to the bottom or list of elements (a row) Align an element or a row of elements to the center of the row that contains it @@ -14472,16 +14476,18 @@ Align an element or a row of elements to the center of the row that contains it ``` vcenter(elem_or_row, expand_x = None, - expand_y = None) + expand_y = None, + background_color = None) ``` Parameter Descriptions: |Type|Name|Meaning| |--|--|--| -| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | -| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | -| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | +| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | +| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| str or None | background_color | Background color for container that is used by vcenter to do the alignment | | Column or List[Column] | **RETURN** | A column element containing the provided element aligned to the center or list of elements (a row) Align an element or a row of elements to the top of the row that contains it @@ -14489,16 +14495,18 @@ Align an element or a row of elements to the top of the row that contains it ``` vtop(elem_or_row, expand_x = None, - expand_y = None) + expand_y = None, + background_color = None) ``` Parameter Descriptions: |Type|Name|Meaning| |--|--|--| -| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | -| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | -| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | +| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | +| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| str or None | background_color | Background color for container that is used by vtop to do the alignment | | Column or List[Column] | **RETURN** | A column element containing the provided element aligned to the top or list of elements (a row) ----------------- diff --git a/docs/cookbook.md b/docs/cookbook.md index 412b44c8..d43ca31b 100644 --- a/docs/cookbook.md +++ b/docs/cookbook.md @@ -25,9 +25,9 @@ apply coupon for discount: - 8D57E54186ADB10C4180 + D11B305A347585E7A915 - diff --git a/docs/index.md b/docs/index.md index af47adfe..b27082f5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,9 +25,9 @@ apply coupon for discount: - 8D57E54186ADB10C4180 + D11B305A347585E7A915 - diff --git a/readme_creator/markdown input files/1_HEADER_top_part.md b/readme_creator/markdown input files/1_HEADER_top_part.md index c9836616..61cd4ac6 100644 --- a/readme_creator/markdown input files/1_HEADER_top_part.md +++ b/readme_creator/markdown input files/1_HEADER_top_part.md @@ -52,9 +52,9 @@ HOW DO I INSERT IMAGES ??? apply coupon for discount: - 8D57E54186ADB10C4180 + D11B305A347585E7A915 - diff --git a/readme_creator/output/call reference.md b/readme_creator/output/call reference.md index 5b769deb..23b879e6 100644 --- a/readme_creator/output/call reference.md +++ b/readme_creator/output/call reference.md @@ -5301,6 +5301,7 @@ Listbox(values, size = (None, None), s = (None, None), disabled = False, + justification = None, auto_size_text = None, font = None, no_scrollbar = False, @@ -5341,6 +5342,7 @@ Parameter Descriptions: | (int, int) or (int, None) or int | size | w=characters-wide, h=rows-high. If an int instead of a tuple is supplied, then height is auto-set to 1 | | (int, int) or (None, None) or int | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | bool | disabled | set disable state for element | +| str | justification | justification for items in listbox. Valid choices - left, right, center. Default is left | | bool | auto_size_text | True if element should be the same size as the contents | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | bool | no_scrollbar | Controls if a scrollbar should be shown. If True, no scrollbar will be shown | @@ -14455,16 +14457,18 @@ Align an element or a row of elements to the bottom of the row that contains it ``` vbottom(elem_or_row, expand_x = None, - expand_y = None) + expand_y = None, + background_color = None) ``` Parameter Descriptions: |Type|Name|Meaning| |--|--|--| -| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | -| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | -| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | +| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | +| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| str or None | background_color | Background color for container that is used by vcenter to do the alignment | | Column or List[Column] | **RETURN** | A column element containing the provided element aligned to the bottom or list of elements (a row) Align an element or a row of elements to the center of the row that contains it @@ -14472,16 +14476,18 @@ Align an element or a row of elements to the center of the row that contains it ``` vcenter(elem_or_row, expand_x = None, - expand_y = None) + expand_y = None, + background_color = None) ``` Parameter Descriptions: |Type|Name|Meaning| |--|--|--| -| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | -| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | -| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | +| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | +| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| str or None | background_color | Background color for container that is used by vcenter to do the alignment | | Column or List[Column] | **RETURN** | A column element containing the provided element aligned to the center or list of elements (a row) Align an element or a row of elements to the top of the row that contains it @@ -14489,16 +14495,18 @@ Align an element or a row of elements to the top of the row that contains it ``` vtop(elem_or_row, expand_x = None, - expand_y = None) + expand_y = None, + background_color = None) ``` Parameter Descriptions: |Type|Name|Meaning| |--|--|--| -| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | -| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | -| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| Element or List[Element] or Tuple[Element] | elem_or_row | the element or row of elements | +| bool | expand_x | If True/False the value will be passed to the Column Elements used to make this feature | +| bool | expand_y | If True/False the value will be passed to the Column Elements used to make this feature | +| str or None | background_color | Background color for container that is used by vtop to do the alignment | | Column or List[Column] | **RETURN** | A column element containing the provided element aligned to the top or list of elements (a row) ----------------- diff --git a/readme_creator/output/index.md b/readme_creator/output/index.md index af47adfe..b27082f5 100644 --- a/readme_creator/output/index.md +++ b/readme_creator/output/index.md @@ -25,9 +25,9 @@ apply coupon for discount: - 8D57E54186ADB10C4180 + D11B305A347585E7A915 -