A <polyline> is a group of connected straight lines. Since the list of points can get quite long, all the points are included in one attribute
SvgPolyLine
01 Syntax
Microsoft.VisualBasic.Imaging.SVG.XML.SvgPolyLine
02 Properties
| Name | Overloads | Summary |
|---|---|---|
| Points | 1 | A list of points. Each number must be separated by a space, comma, EOL, or a line feed character with additional whitespace permitted. Each point must contain two numbers: an x… |
03 Members
Points
A list of points. Each number must be separated by a space, comma, EOL, or a line feed character with additional whitespace permitted. Each point must contain two numbers: an x coordinate and a y coordinate. So, the list (0,0), (1,1), and (2,2) could be written as 0, 0 1, 1 2, 2.