Use#
- class svgwrite.container.Use(href, insert=None, size=None, **extra)#
The use element references another element and indicates that the graphical contents of that element is included/drawn at that given point in the document.
Link to objects by href =
'#object-id'
or use the object itself as href-argument, if the given element has no id attribute it gets an automatic generated id.
- Use.__init__(href, insert=None, size=None, **extra)#
- 参数:
href (string) – object link (id-string) or an object with an id-attribute
insert (2-tuple) – insert point (x, y)
size (2-tuple) – (width, height)
extra – additional SVG attributes as keyword-arguments
父类#
Parent Classes
SVG 属性#
SVG Attributes
class – string
为元素分配一个或多个 CSS 类名。
style – string
允许直接在指定元素上定义每个元素的 CSS 样式规则。
externalResourcesRequired – bool
False:如果文档渲染可以继续进行,即使外部资源不可用;否则为 True。
x – <coordinate> – 插入 参数
被引用元素放置的矩形区域的一个角的 x 轴坐标。
默认值为
'0'
。y – <coordinate> – 插入 参数
被引用元素放置的矩形区域的一个角的 y 轴坐标。
默认值为
'0'
。width – <length> – 尺寸 参数
被引用元素放置的矩形区域的宽度。负值无效,零值将禁用该元素的渲染。
默认值为
'100%'
。height – <length> – 尺寸 参数
被引用元素放置的矩形区域的高度。负值无效,零值将禁用该元素的渲染。
默认值为
'100%'
。transform –
svgwrite.mixins.Transform
接口。xlink:href – string – href 参数
在 __init__(href) 中设置。
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 –
svgwrite.mixins.Transform
interfacexlink:href – string – href parameter
set on __init__(href)
标准 SVG 属性#
Standard SVG Attributes