Click or drag to resize

SectionManagerAddComment Method

주석 추가

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

Parameters

id
Type: SystemInt32
단면 아이디(ID)
subid
Type: SystemInt32
단면 서브 아이디(ID)
title
Type: SystemString
제목
comments
Type: SystemString
주석
author
Type: SystemString
저자

Return Value

Type: Int32
주석 아이디(ID)
Examples
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