CommentManagerUpdate Method |
Namespace: VIZCore3D.NET.Manager
public void Update( int id, int commentId, string title, string comments, string author )
// 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..." ); }