This document is archived and information here might be outdated. Recommended version. |
Copies to the input point a point guaranteed to be on this 3D surface area.
[Visual Basic .NET] Public Sub QueryLabelPoint3D ( _ ByVal LabelPoint As IPoint _ )
[C#] public void QueryLabelPoint3D ( IPoint LabelPoint );
[C++]
HRESULT QueryLabelPoint3D(
IPoint* LabelPoint
);
[C++] Parameters LabelPoint
LabelPoint is a parameter of type IPoint*
public static void QueryLabelPoint3D()
{
IGeometry multiPatchGeometry = GetMultiPatchGeometry();
IArea3D area3D = multiPatchGeometry as IArea3D;
IPoint labelPoint3D = new PointClass();
area3D.QueryLabelPoint3D(labelPoint3D);
//labelPoint3D = (-2.5, -2.5, 8.5)
}