I really like using the CommandSwitchWindow over the Forms.list.
Is there a way to make the options show stacked instead of wrapping? I see that Width and Height are shown in
classpyrevit.forms.CommandSwitchWindow(context, title, width, height, **kwargs)
but not sure how to use it. it tried this
return forms.CommandSwitchWindow.show(
options,
message=“Choose action for marked schedule columns”,
width=320,
height=220
)
but did not do anything. I was initially trying to make the width more narrow to fake the stacking of the options. Suggestions?


