Click or drag to resize

MeasureManagerAddCustomPosition Method

[사용자 정의] 위치 측정

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

Parameters

position
Type: VIZCore3D.NET.DataVertex3D
위치

Return Value

Type: Int32
측정(리뷰) 아이디(ID)
Examples
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