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