 | PathPointsCollectionAppendLine Method |
Adds a line to this path.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void AppendLine(
float x1,
float y1,
float x2,
float y2
)
Public Sub AppendLine (
x1 As Single,
y1 As Single,
x2 As Single,
y2 As Single
)
public:
void AppendLine(
float x1,
float y1,
float x2,
float y2
)
member AppendLine :
x1 : float32 *
y1 : float32 *
x2 : float32 *
y2 : float32 -> unit public void AppendLine(
float x1,
float y1,
float x2,
float y2
)
function AppendLine(x1, y1, x2, y2);
Parameters
- x1 Single
- The x-coordinate of the start of a new line.
- y1 Single
- The y-coordinate of the start of a new line.
- x2 Single
- The x-coordinate of the end of a line.
- y2 Single
- The y-coordinate of the end of a line.
See Also