Tag Definition: circle
Generated by rlextra version 3.6.13
Attributes
Name |
Required? |
Default_Value |
Values |
fill |
implied |
None |
|
radius |
required |
None |
|
stroke |
implied |
None |
|
x |
required |
None |
|
y |
required |
None |
|
Can contain |
Purpose
This is to draw a circle graphic on the page, you can declare it's location, size, fill color, stroke color.
Example usage
<template>
<pageTemplate id="Page" pageSize="(595, 842)">
<pageGraphics>
<fill color="red"/>
<stroke color="blue"/>
<circle x="150" y="150" radius="50" fill="1" stroke="1"/>
</pageGraphics>
<frame id="Frame 1" x1="30" y1="30" width="535" height="782" showBoundary="1"/>
</pageTemplate>
</template>
Note: Only relevant sections are used in this snippet. Some tags were not included. See some of our samples for further insight of how you may go about setting up a full document using rml.
Example of nesting path from the parent tags to the current tag
<document> ➔ <template> ➔ <pageTemplate> ➔ <pageGraphics> ➔ <circle>