Click or drag to resize

MeasureManagerAddCustomPosition Method

[사용자 정의] 위치 측정

Namespace: VIZCore3D.NET.Manager
Assembly: VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.910 (2.8.24.910)
Syntax
C#
public int AddCustomPosition(
	Vertex3D position
)

Parameters

position  Vertex3D
위치

Return Value

Int32
측정(리뷰) 아이디(ID)
Example
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    VIZCore3D.NET.Data.Vertex3D position =
        new Data.Vertex3D(100, 200, 300);

    int id = vizcore3d.Review.Measure.AddCustomPosition(position);
}
See Also