Window.LineTo Method | |
Draw a line on this window (using the current pen) from the current pen position to a specified point.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD LineTo(
oPoint
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual LineTo(
Usual oPoint = default
)
Request Example
View SourceParameters
- oPoint (Optional)
- Type: Usual
The position where the line should end, in canvas coordinates. or an array of points,
in canvas coordinates, where the line should end, in which case Window:LineTo() acts like a polyline method.
Return Value
Type:
UsualRemarks
The current pen position is updated to the line's ending position (as specified by <oPoint> or <aoPoint>).
See Also