LineObject Constructor (Point, Point, Pen) | |
Construct a LineObject object.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oPoint1 AS Point,
oPoint2 AS Point,
oPen AS Pen
)
public LineObject(
Point oPoint1,
Point oPoint2,
Pen oPen
)
Request Example
View SourceParameters
- oPoint1
- Type: Point
The point representing the start of the line. - oPoint2
- Type: Point
The point representing the end of the line. - oPen
- Type: Pen
The pen to be used for drawing the LineObject object. If omitted, the current pen is used.
Remarks
The pen specified by oPen should not be deleted while it is selected.
See Also