PublicAPI.Docflow.Document.AddComment ELMA API Documentation
Add a comment to the document
 
 
Syntax

public void AddComment(
	Document document,
	string commentText
)

Parameters

document
Type: Document
Document, a comment will be added to. Object. Access path: PublicAPI.Docflow.Document
commentText
Type: System String
Comment (string)
Examples

//load the document by ID 
var doc = PublicAPI.Docflow.Document.Load(3);

//add the comment
PublicAPI.Docflow.Document.AddComment(doc, commentText);
See Also