ClearComment
Overloads
| Name | Description |
|---|---|
| ClearComment(int id, int subid) | 전체 주석 삭제 |
ClearComment(int id, int subid)
public void ClearComment(int id, int subid)
전체 주석 삭제
Parameters
| Name | Type | Description |
|---|---|---|
| id | int | 단면 아이디(ID) |
| subid | int | 단면 서브 아이디(ID) |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
int SectionID = 1;
int SectionSubID = 2;
vizcore3d.Section.ClearComment(SectionID, SectionSubID);
}