본문으로 건너뛰기

DeleteComment

Overloads

NameDescription
DeleteComment(int id, int subid, int commentId)주석 삭제

DeleteComment(int id, int subid, int commentId)

public void DeleteComment(int id, int subid, int commentId)

주석 삭제

Parameters

NameTypeDescription
idint단면 아이디(ID)
subidint단면 서브 아이디(ID)
commentIdint주석 아이디(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
);
}