This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IA > IArea3D Interface > IArea3D.LabelPoint3D Property (ArcObjects .NET 10.4 SDK) |
A point guaranteed to be on this 3D surface area.
[Visual Basic .NET] Public ReadOnly Property LabelPoint3D As IPoint
[C#] public IPoint LabelPoint3D {get;}
[C++]
HRESULT get_LabelPoint3D(
IPoint** LabelPoint
);
[C++]
Parameters LabelPoint [out, retval]
LabelPoint is a parameter of type IPoint
public static void GetLabelPoint3D()
{
IGeometry multiPatchGeometry=GetMultiPatchGeometry();
IArea3D area3D = multiPatchGeometry as IArea3D;
IPoint labelPoint3D=area3D.LabelPoint3D;
//labelPoint3D = (-2.5, -2.5, 8.5)
}