Skip to main content

AddComment

Adds a comment to the current inline content control. 💡 Please note that this inline content control must be in the document.

Syntax

expression.AddComment(sText, sAuthor, sUserId);

expression - A variable that represents a ApiInlineLvlSdt class.

Parameters

NameRequired/OptionalData typeDefaultDescription
sTextRequiredstringThe comment text (required).
sAuthorRequiredstringThe author's name (optional).
sUserIdRequiredstringThe user ID of the comment author (optional).

Returns

ApiComment

Example

This example adds a comment to the inline content control.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let inlineLvlSdt = Api.CreateInlineLvlSdt();
inlineLvlSdt.AddText("This is an inline text content control.");
paragraph.AddInlineLvlSdt(inlineLvlSdt);
inlineLvlSdt.AddComment("comment", "John Smith");