1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
.. _style_api:
Style-related objects
=====================
A style is used to collect a set of formatting properties under a single name
and apply those properties to a content object all at once. This promotes
formatting consistency throughout a document and across related documents
and allows formatting changes to be made globally by changing the definition
in the appropriate style.
|Styles| objects
----------------
.. currentmodule:: docx.styles.styles
.. autoclass:: Styles()
:members:
:inherited-members:
:exclude-members:
get_by_id, get_style_id, part
|BaseStyle| objects
-------------------
.. currentmodule:: docx.styles.style
.. autoclass:: BaseStyle()
:members:
:inherited-members:
:exclude-members:
part, style_id
|CharacterStyle| objects
-------------------------
.. autoclass:: CharacterStyle()
:show-inheritance:
:members:
:inherited-members:
:exclude-members:
element, part, style_id, type
|ParagraphStyle| objects
-------------------------
.. autoclass:: ParagraphStyle()
:show-inheritance:
:members:
:inherited-members:
:exclude-members:
element, part, style_id, type
|_TableStyle| objects
---------------------
.. autoclass:: _TableStyle()
:show-inheritance:
:members:
:inherited-members:
:exclude-members:
element, part, style_id, type
|_NumberingStyle| objects
-------------------------
.. autoclass:: _NumberingStyle()
:members:
|LatentStyles| objects
----------------------
.. currentmodule:: docx.styles.latent
.. autoclass:: LatentStyles()
:members:
:inherited-members:
:exclude-members:
part
|_LatentStyle| objects
----------------------
.. autoclass:: _LatentStyle()
:members:
:inherited-members:
:exclude-members:
part
|