Having a Kendo editor declared like this:
@(Html.Kendo().EditorFor(m => m.MyEditor) .Name("MyEditor") .Resizable(true) .StyleSheets(css => css.Add(Url.Content("~/Content/EditorStyles.css"))) .Messages(messages => messages .FontNameInherit("Default") .FontSizeInherit("Default") ) .Tools(tools => tools .Clear() .Bold() .Italic() .Underline() .JustifyLeft() .JustifyCenter() .JustifyRight() .InsertUnorderedList() .InsertOrderedList() .Indent() .FontName(fonts => fonts .Add("Arial", "Arial") .Add("Courier New", "Courier New") .Add("Helvetica", "Helvetica") .Add("Times New Roman", "TimesNewRoman") .Add("Verdana", "Verdana") ) .FontSize(sizes => sizes .Add("8", "8pt") .Add("9", "9pt") .Add("10", "10pt") .Add("12", "12pt") .Add("14", "14pt") .Add("16", "16pt") .Add("18", "18pt") .Add("20", "20pt") ) ))