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
|
Use
===
.. autoclass:: svgwrite.container.Use
.. seealso:: http://www.w3.org/TR/SVG11/struct.html#UseElement
.. automethod:: svgwrite.container.Use.__init__
Parent Classes
--------------
* :class:`svgwrite.base.BaseElement`
* :class:`svgwrite.mixins.Transform`
* :class:`svgwrite.mixins.XLink`
* :class:`svgwrite.mixins.Presentation`
SVG Attributes
--------------
* **class** -- `string`
assigns one or more css-class-names to an element
* **style** -- `string`
allows per-element css-style rules to be specified directly on a given
element
* **externalResourcesRequired** -- `bool`
*False*: if document rendering can proceed even if external resources are
unavailable else: *True*
* **x** -- `<coordinate>` -- **insert** parameter
The x-axis coordinate of one corner of the rectangular region into which
the referenced element is placed.
Default is ``'0'``.
* **y** -- `<coordinate>` -- **insert** parameter
The y-axis coordinate of one corner of the rectangular region into which the
referenced element is placed.
Default is ``'0'``.
* **width** -- `<length>` -- **size** parameter
The width of the rectangular region into which the referenced element is
placed. A negative value is an error. A value of zero disables rendering
of this element.
Default is ``'100%'``.
* **height** -- `<length>` -- **size** parameter
The height of the rectangular region into which the referenced element is
placed. A negative value is an error. A value of zero disables rendering
of this element.
Default is ``'100%'``.
* **transform** -- :class:`svgwrite.mixins.Transform` interface
* **xlink:href** -- `string` -- **href** parameter
set on __init__(href)
Standard SVG Attributes
-----------------------
* :doc:`Core Attributes </attributes/core>`
* :doc:`Conditional Processing Attributes </attributes/conditional_processing>`
* :doc:`Graphical Event Attributes </attributes/graphical_event>`
* :doc:`Presentation Attributes </attributes/presentation>`
* :doc:`XLink Attributes </attributes/xlink>`
|