@@ -180,7 +180,8 @@ def row(row, value, column_start=0, column_end=None, type=None, color=None, back
180
180
return cell_range (value , column_start = column_start , column_end = column_end , row_start = row , row_end = row ,
181
181
squeeze_row = True , squeeze_column = False ,
182
182
color = color , background_color = background_color ,
183
- font_style = font_style , font_weight = font_weight , style = style , type = type , ** kwargs )
183
+ font_style = font_style , font_weight = font_weight , style = style , type = type , choice = choice ,
184
+ read_only = read_only , numeric_format = numeric_format , date_format = date_format , renderer = renderer , ** kwargs )
184
185
185
186
186
187
@doc_subst (_common_doc )
@@ -207,7 +208,7 @@ def column(column, value, row_start=0, row_end=None, type=None, color=None, back
207
208
>>> column(1, [True, False, True], row_start=2) # The Cell type will be 'checkbox'
208
209
"""
209
210
return cell_range (value , column_start = column , column_end = column , row_start = row_start , row_end = row_end ,
210
- squeeze_row = False , squeeze_column = True , style = style ,
211
+ squeeze_row = False , squeeze_column = True , style = style , choice = choice ,
211
212
read_only = read_only , numeric_format = numeric_format , date_format = date_format , renderer = renderer ,
212
213
color = color , background_color = background_color , type = type ,
213
214
font_style = font_style , font_weight = font_weight , ** kwargs )
0 commit comments