
Returns a Boolean value indicating whether the curve list is closed (true) or not.
| 
set oObject = Application.ActiveProject.ActiveScene.Root.AddGeometry("Arc","NurbsCurve")
set oNurbsCurveList = oObject.ActivePrimitive.Geometry
if oNurbsCurveList.Closed then
logmessage "NURBS curves closed"
end if
 |