ToolbarSuperscriptButton Class
A default toolbar button that allows the superscript text formatting to be applied to the text selected in the design view area.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public class ToolbarSuperscriptButton :
HtmlEditorToolbarItem
#Remarks
The ASPxHtmlEditor provides subscription and superscription formatting of the selected editor’s content, by using the Superscript (ToolbarSuperscriptButton) and Subscript (ToolbarSubscriptButton) buttons.
You can add the Superscript button to toolbars by using either the ASPxHtmlEditor designer at design time, or programmatically.
protected void Page_Load(object sender, EventArgs e) {
HtmlEditorToolbar stToolbar1 = HtmlEditorToolbar.CreateStandardToolbar1();
ToolbarSuperscriptButton supButton = new ToolbarSuperscriptButton();
stToolbar1.Items.Add(supButton);
ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}