Determines if the specified curve is closed (that is, the start point is the same as the endpoint)
(vlax-curve-isClosed curve-obj)
Arguments
The VLA-object to be tested.
Return Values
T if the curve is closed; otherwise nil.
Examples
Determine if the ellipse used to demonstrate vlax-curve-getArea is closed:
(vlax-curve-isClosed ellipseObj) T
Determine if the spline used to demonstrate vlax-curve-getDistAtParam is closed:
(vlax-curve-isClosed splineObj) nil