I'm looking to allow users to edit text that I am inserting in a rectangle. It appears that right-click > edit text works, but it's a pretty clunky solution. I've looked through the properties of text, paragraph, canvas and rectangle but I'm not seeing anything that fits this. I've also looked into adding text-boxes to the rectangle but that's not exactly what I'm looking for.
The goal would be to let the user click on the text below and edit in-rectangle.

The code for the last bit:
Text conclusionTitle = new Text("CONCLUSION:\n").SetFontSize(7).SetFontColor(ColorConstants.RED).SetBold();
Text conclusionMessage = new Text("[Insert response here]").SetFontSize(6).SetFontColor(ColorConstants.RED);
Paragraph conclusionParagraph = new Paragraph().Add(conclusionTitle).Add(conclusionMessage);