📄 regionseparator.xsl
字号:
<?xml version="1.0" encoding="UTF-8"?>
<!--
Template: RegionSeparator.xsl
Displays RegionSeparator lines as a dashed line
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/2000/svg" xmlns:UML="org.omg.xmi.namespace.UML">
<xsl:import href="../Common/Styling.xsl"/>
<xsl:output media-type="image/svg+xml" method="xml" indent="yes"/>
<!-- RegionSeparator -->
<xsl:template name="RegionSeparator">
<xsl:param name="DiagramID" select="@xmi.id"/>
<!-- The main RegionSeparator group -->
<g transform="translate({UML:GraphElement.position/XMI.field[1]}, {UML:GraphElement.position/XMI.field[2]})">
<xsl:apply-templates select="." mode="FontStyle"/>
<xsl:apply-templates select="." mode="StrokeStyle"/>
<xsl:apply-templates select="." mode="isVisible" />
<desc>RegionSeparator</desc>
<!-- RegionSeparator line -->
<line x1="0" y1="0" x2="{UML:GraphNode.size/XMI.field[1]}" y2="{UML:GraphNode.size/XMI.field[2]}" fill="none" stroke-dasharray="8 8"/>
</g>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -