Click or drag to resize

SectionManagerClearComment Method

전체 주석 삭제

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

Parameters

id
Type: SystemInt32
단면 아이디(ID)
subid
Type: SystemInt32
단면 서브 아이디(ID)
Examples
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