I'm working with a document that has a custom Style that has a custom bulleted list style applied to it. I need to be able to inspect this style and understand that it is a bulleted list. Is there a property of the style that would be associated with this? I've been looking at the the properties within the paragraph format like so:
document = Document('example.docx')
styles = document.styles
for style in style:
print(dir(style.paragraph_format))
but none of these objects that I've looked at thus far make it clear that there's a bulleted list style. Is this information stored somewhere? As I said, the name of the style is custom and so isn't named as some built-in List Bullet
style or anything like that.