StoryTeller.Persistence.JsonNode.WithFormattedText C# (CSharp) Method

WithFormattedText() public method

public WithFormattedText ( string text ) : INode
text string
return INode
        public INode WithFormattedText(string text)
        {
            this[INNER_TEXT] = text;
            return this;
        }