Serenity.HtmlReportContentEditor.GetConfig C# (CSharp) Method

GetConfig() protected method

protected GetConfig ( ) : Serenity.CKEditorConfig
return Serenity.CKEditorConfig
        protected override CKEditorConfig GetConfig()
        {
            var config = base.GetConfig();
            config.RemoveButtons += ",Image,Table,HorizontalRule,Anchor,Blockquote,CreatePlaceholder,BGColor," + 
                "JustifyLeft,JustifyCenter,JustifyRight,JustifyBlock,Superscript";
            return config;
        }
    }