Is there a document that shows the names of all the panels?

Hi

I am looking for a document that displays both the API and the literal names of all the panes, panels and windows? I am wondering if such document exists even in a draft state?

you could use python to make a list…

panels = bpy.types.Panel.__subclasses__()
for panel in panels:
    print(panel.bl_label, "   from : ", panel.bl_space_type)
1 Like

Thanks that is useful, but a bit disorganized. I guess better than nothing.

You could try my list-blender-types-ops script. This offers a choice of a couple of different output formats.

Cool, I will try it

Can you please print somewhere result of you script? for 2.8 blender

I can’t run it.