Smartsheet.Api.Models.Comment.AddCommentBuilder.SetText C# (CSharp) Method

SetText() public method

The Text for the Comment.
public SetText ( string text ) : AddCommentBuilder
text string the Text
return AddCommentBuilder
            public virtual AddCommentBuilder SetText(string text)
            {
                this.text = text;
                return this;
            }
Comment.AddCommentBuilder