Click or drag to resize

CommentManagerUpdate Method

수정

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

Parameters

id  Int32
리뷰 아이디(ID)
commentId  Int32
주석 아이디(ID)
title  String
제목
comments  String
주석 내용
author  String
주석 저자
Example
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    int ReviewID = 1;
    int CommentID = 3;

    vizcore3d.Review.Comment.Update(
        ReviewID
        , CommentID
        , "Title..."
        , "Comment..."
        , "Author..."
        );
}
See Also