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