Click or drag to resize

SectionManagerClearComment Method

전체 주석 삭제

Namespace: VIZCore3D.NET.Manager
Assembly: VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.910 (2.8.24.910)
Syntax
C#
public void ClearComment(
	int id,
	int subid
)

Parameters

id  Int32
단면 아이디(ID)
subid  Int32
단면 서브 아이디(ID)
Example
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    int SectionID = 1;
    int SectionSubID = 2;

    vizcore3d.Section.ClearComment(SectionID, SectionSubID);
}
See Also