垂直线对象
- Last UpdatedSep 24, 2024
- 1 minute read
可以为垂直线对象指定以下元素。这将生成 WindowMaker 水平/垂直线对象。
|
元素 |
描述 |
|---|---|
|
笔 |
Pen 元素。 |
|
标题 |
对象名。可选。 |
|
动画链接 |
可选的动画链接列表。 |
|
标记点 |
必须包含两个点。将忽略第二个点的 X 坐标,并将其设置为第一个点的 X 坐标。额外的 Point 元素将被忽略。必需。 如果为 Points 元素指定了无效的值或该元素缺少值,则不会创建对象。 |
示例:
<VerticalLine>
<Title>线 1</Title>
<Pen>
<PenColor><Name>Black</Name></PenColor>
<PenWidth>1</PenWidth>
<PenStyle>Solid</PenStyle>
</Pen>
<Points>
<Point><X>50</X><Y>150</Y></Point>
<Point><X>50</X><Y>250</Y></Point>
</Points>
<AnimationLinks>
</AnimationLinks>
<VerticalLine>
最简示例:
<VerticalLine>
<Points>
<Point><X>50</X><Y>150</Y></Point>
<Point><X>50</X><Y>250</Y></Point>
</Points>
<VerticalLine>