Click or drag to resize

SectionManagerDeleteComment 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 DeleteComment(
	int id,
	int subid,
	int commentId
)

Parameters

id
Type: SystemInt32
단면 아이디(ID)
subid
Type: SystemInt32
단면 서브 아이디(ID)
commentId
Type: SystemInt32
주석 아이디(ID)
Examples
C#
// 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
        );
}
See Also