AddComment
Overloads
| Name | Description |
|---|---|
| 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
| Name | Type | Description |
|---|---|---|
| id | int | 단면 아이디(ID) |
| subid | int | 단면 서브 아이디(ID) |
| title | string | 제목 |
| comments | string | 주석 |
| author | string | 저자 |
Returns
| Type | Description |
|---|---|
| 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..."
);
}