|
|
[サンプルコード]
背景に破線を表示します
/* Formの背景に破線を描画 */
Form Form1 {
Width = 500;
Height = 500;
if (!$DESIGNTIME) {
BgPattern = new xmlDocument << xml <<-
<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg>
<line x1="0" y1="10" x2="100" y2="10" stroke-dasharray="3 2"
stroke-width="1" stroke="#000000"/>
</svg>->>;
BgPattern.documentElement.setAttribute("width",Form1.width);
BgPattern.documentElement.setAttribute("height",Form1.height);
}
}
|
|