This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IC > ICurve3D Interface > ICurve3D.IsClosed3D Property (ArcObjects .NET 10.5 SDK) |
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(
VARIANT_BOOL* IsClosed
);
[C++]
Parameters IsClosed [out, retval] IsClosed is a parameter of type VARIANT_BOOL
public static void GetIsClosed3D()
{
IGeometry polylineGeometry=GetPolylineGeometry();
ICurve3D curve3D=polylineGeometry as ICurve3D;
bool isClosed3D=curve3D.IsClosed3D;
//isClosed3D=false
}