[]
Removes text and paragraph formatting from the text range.
public void ClearFormatting()
The example shows how to clear any formatting of selected text.
private void button1_Click(object sender, EventArgs e)
{
editor.Selection.ClearFormatting();
}