Click or drag to resize

SectionManagerAddComment Method

주석 추가

Namespace: VIZCore3D.NET.Manager
Assembly: VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.910 (2.8.24.910)
Syntax
C#
public int AddComment(
	int id,
	int subid,
	string title,
	string comments,
	string author
)

Parameters

id  Int32
단면 아이디(ID)
subid  Int32
단면 서브 아이디(ID)
title  String
제목
comments  String
주석
author  String
저자

Return Value

Int32
주석 아이디(ID)
Example
C#
// 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..."
        );
}
See Also