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
|
Header Section
==============
.. module:: ezdxf.sections.header
The drawing settings are stored in the HEADER section, which is accessible by
the :attr:`~ezdxf.document.Drawing.header` attribute of the
:class:`~ezdxf.document.Drawing` object. See the online documentation from
Autodesk for available `header variables`_.
.. seealso::
DXF Internals: :ref:`header_section_internals`
.. class:: HeaderSection
.. attribute:: custom_vars
Stores the custom drawing properties in a :class:`CustomVars` object.
.. automethod:: __len__
.. automethod:: __contains__
.. automethod:: varnames
.. automethod:: get
.. automethod:: __getitem__
.. automethod:: __setitem__
.. automethod:: __delitem__
.. automethod:: reset_wcs
.. autoclass:: CustomVars
.. attribute:: properties
A list of custom header properties, stored as string tuples ``(tag, value)``.
Multiple occurrence of the same custom tag is allowed, but not well
supported by the interface. This is a standard Python list and it's safe
to modify this list as long as you just use tuples of strings.
.. automethod:: __len__
.. automethod:: __iter__
.. automethod:: clear
.. automethod:: get
.. automethod:: has_tag
.. automethod:: append
.. automethod:: replace
.. automethod:: remove
.. _header variables: http://help.autodesk.com/view/OARX/2018/ENU/?guid=GUID-A85E8E67-27CD-4C59-BE61-4DC9FADBE74A
|