TinyMCE6
TinyMCE editor = new TinyMCE()
{
Dock = DockStyle.Fill,
Text = "<p>Hello <strong>world</strong></p>",
ShowMenuBar = false,
ShowToolbar = true,
ShowFooter = true,
Options = new
{
plugins = "link image code lists",
toolbar = "undo redo | bold italic | bullist numlist | link | code"
}
};
this.Controls.Add(editor);How To Use
Last updated
Was this helpful?