VerticalLineTo
The VerticalLineTo class represents the SVG/AVG "vertical line to" command, which instructs the pen to move vertically by the specified amount.
A type of PathNodes, it holds the given SVG/AVG command parameters.
The vertical position where the pen should move to is denoted by y, the first value stripped of the command prefix and the PathCommand.Close suffix.
Depending on the isRelative flag, the y value is considered either as an absolute coordinate (if false) or as a distance from the current position (if true).
The class contains an overridden materialize function which returns a String representation of the SVG/AVG command in the form required by the Compose path functions.
Properties
Functions
Creates a copy of the current VerticalLineTo command with the given parameters.