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
|
Tables Section
==============
.. module:: ezdxf.sections.tables
The TABLES section is the home of all TABLE objects of a DXF document.
.. seealso::
DXF Internals: :ref:`tables_section_internals`
.. class:: TablesSection
.. attribute:: layers
:class:`~ezdxf.sections.table.LayerTable` object for :class:`~ezdxf.entities.Layer` objects
.. attribute:: linetypes
:class:`~ezdxf.sections.table.LineTypesTable` object for :class:`~ezdxf.entities.Linetype` objects
.. attribute:: styles
:class:`~ezdxf.sections.table.TextstyleTable` object for :class:`~ezdxf.entities.Textstyle` objects
.. attribute:: dimstyles
:class:`~ezdxf.sections.table.DimStyleTable` object for :class:`~ezdxf.entities.DimStyle` objects
.. attribute:: appids
:class:`~ezdxf.sections.table.AppIDTable` object for :class:`~ezdxf.entities.AppID` objects
.. attribute:: ucs
:class:`~ezdxf.sections.table.UCSTable` object for :class:`~ezdxf.entities.UCSTable` objects
.. attribute:: views
:class:`~ezdxf.sections.table.ViewTable` object for :class:`~ezdxf.entities.View` objects
.. attribute:: viewports
:class:`~ezdxf.sections.table.ViewportTable` object for :class:`~ezdxf.entities.VPort` objects
.. attribute:: block_records
:class:`~ezdxf.sections.table.BlockRecordTable` object for :class:`~ezdxf.entities.BlockRecord` objects
|