본문으로 건너뛰기

AddComment

Overloads

NameDescription
AddComment(int id, int subid, string title, string comments, string author)주석 추가

AddComment(int id, int subid, string title, string comments, string author)

public int AddComment(int id, int subid, string title, string comments, string author)

주석 추가

Parameters

NameTypeDescription
idint단면 아이디(ID)
subidint단면 서브 아이디(ID)
titlestring제목
commentsstring주석
authorstring저자

Returns

TypeDescription
int주석 아이디(ID)

Examples

// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
int SectionID = 1;
int SectionSubID = 2;

int CommentID = vizcore3d.Section.AddComment(
SectionID
, SectionSubID
, "Title..."
, "Comment..."
, "Author..."
);
}