This document is archived and information here might be outdated. Recommended version. |
Indicates if 'from' and 'to' points (of each part) are identical.
[Visual Basic .NET]
Public ReadOnly Property IsClosed3D As Boolean
[C#]
public bool IsClosed3D {get;}
[C++]
HRESULT get_IsClosed3D(
Boolean* IsClosed
);
[C++] Parameters IsClosed [out, retval]
IsClosed is a parameter of type bool*
public static void GetIsClosed3D()
{
IGeometry polylineGeometry = GetPolylineGeometry();
ICurve3D curve3D = polylineGeometry as ICurve3D;
bool isClosed3D = curve3D.IsClosed3D;
//isClosed3D = false
}