Good Morning.
I am trying to figure out how to programmatically (C#) add text to the editor with styles built into to the string. The codes that the editor control accepts doesn't matter to me as I can run a conversion from the string to what's acceptable by the control. I've looked through the documentation that I could find and only found things like "control.method" instead of the control actually reading the text to find out what to "Switch on and off", etc.
For a crude example, an html string might consist of "hello my <b>bold</b> string.". What would I replace <b> and </b> with so that the editor can translate them into bold and non-bold? I am only using HTML has an example, it could be anything.
Normally, I wouldn't use the editor control as it has a tons of stuff I would never use, but it seems to be the only control available for possibly support styles, colors, and inline images (emoticons).