Vertical line object
- Last UpdatedJul 26, 2024
- 1 minute read
The following elements can be specified for a vertical line object. This will result in a WindowMaker HV Line object.
|
Elements |
Description |
|---|---|
|
Pen |
Pen element. |
|
Title |
Object name. Optional. |
|
AnimationLinks |
Optional animation links list. |
|
Points |
Must contain two points. The X coordinate of the second point is ignored and set to the X coordinate of the first point. Extra point elements are ignored. Required. An object is not created if the Points element is assigned invalid values or is missing values. |
Example:
<VerticalLine>
<Title>Line1</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>
Minimal example:
<VerticalLine>
<Points>
<Point><X>50</X><Y>150</Y></Point>
<Point><X>50</X><Y>250</Y></Point>
</Points>
<VerticalLine>